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 |
Can we change web.config settings from iis?
How can I stop my code being reverse-engineered from IL
Is it possible to cancel filter execution?
Can you handle all button click events at once in a form? Give coding.
what are background threads? give ex?
How do you register the dotnet component or assembly ?
1 Answers Accenture, BirlaSoft,
If we write return statement in finally block will it works fine or throws any error?
Is it possible to combine asp.net webforms and asp.mvc and develop a single web application?
What is the need of Action Filters in ASP.Net MVC
If background completes its processing will it wait for foreground threads?
How you deploy .NET assemblies
Why do you need to serialize