.Net Framework Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 2603 Page Views: 

What is a shared assembly in .Net?



Posted By: Avi Date: 29 August 2009 07:24:19 AM
 Answer:

A shared assembly is an assembly that is available for use by multiple applications on the computer.
For using the shared assemblies you need to first strong name the assembly and then place it in the global assembly cache(GAC) using gacutil.exe. GAC can be found on all the computers with .Net framework installed.


Posted By: eTechPlanet


Date: 29 August 2009 07:24:19 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image dR0tNj
Related Questions
.Net Framework : Can we force garbage collection in .Net?

Can we force garbage collection in .Net?

Yes. Set all references to null and then call System.GC.Collect().
Category: .Net Framework Date: 8/28/2009 4:58:58 PM
.Net Framework : What is Marshaling?

What is Marshaling?

Marshaling performs the necessary conversions in data formats between managed and unmanaged code. CL....
Category: .Net Framework Date: 8/28/2009 7:04:46 AM
.Net Framework : What is the top .Net class that everything is derived from?

What is the top .Net class that everything is derived from?

System.Object
Category: .Net Framework Date: 8/28/2009 7:01:44 AM
.Net Framework : Can we allow a class to be inherited, but prevent the method from being overridden?

Can we allow a class to be inherited, but prevent the method from being overridden?

Yes. Define the class as public and make the method sealed.
Category: .Net Framework Date: 8/28/2009 6:59:11 AM
.Net Framework : What is an interface class?

What is an interface class?

Interfaces, like classes, define a set of properties, methods, and events. But unlike classes, inter....
Category: .Net Framework Date: 8/28/2009 6:56:01 AM