How .net assemblies are registred as private and shared
assembly ?
Answers were Sorted based on User's Feedback
Answer / prabhakar
Any assembly file (.net dll, .net exe ) is by default is
Private assembly. This means the assembly is visible only to
the application that loads/references it explicitly. Each
application that refers our private assembly will get its
own copy in its assembly.
Shared assembly is the assembly that is registered to the
GAC (Global Assembly Cache) that is part of the .Net
framework installed (under 'windows/assembly' directory) on
a system. We use 'gacutils.exe' binary to register the GAC
such as gacutil -i MyAssembly.exe. All applications those
reference a 'registered global assembly' would use the same
copy of the assembly present in the GAC. Hence it is called
'Shared assembly'.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vikas sharma
Private is a simple form af assembly.
Shared assembly used the GAXC and Strong name convention.
| Is This Answer Correct ? | 0 Yes | 1 No |
I am confusing about reflection.can any one tell about REFLECTION with example?
creating crystal reports in asp.net & vb.net
What is route config?
Explain RenderBody and RenderPage in ASP.Net MVC?
Which are the important namespaces used in ASP.Net MVC?
What is a view engine?
what is an assembly?
Can two application one using private assembly and other using Shared assembly be stated as a side-by-side executables?
what is difference b/w .net 1.1 and .net 2.0. I need Answer in c# , asp.net and ado.net Level.Like c#1.1 and c#.1.1 , ado.net1.1 and ado.net2.0 and asp.net1.1 and asp.net2.0
what is ADO.NET
What is the difference between old ADO.NET and Entity framework coding techniques?
When i am using Ajax controls (updatepanel),Is page events all are executed or only some events are executed?which page events are executed?