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

What is an assembly?



Posted By: Avi Date: 29 August 2009 06:27:06 AM
 Answer:

When you compile .Net source code, an exe or dll is generated, which is actually known as an assembly in .Net.
Assemblies are the building blocks of .Net Framework applications and they form the fundamental unit of deployment, version control, reuse, activation scoping, and security permissions. An assembly is a collection of types and resources that are built to work together and form a logical unit of functionality.


Posted By: eTechPlanet


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

Loading
Enter the text as shown in the image nDUEWm
Related Questions
.Net Framework : What is WF?

What is WF?

Windows Workflow Foundation provides a programming model, in-process workflow engine and rehostable ....
Category: .Net Framework Date: 10/13/2010 1:52:48 PM
.Net Framework : What is serialization?

What is serialization?

Serialization is process of converting an object into other form (like xml tree or sequence of bits)....
Category: .Net Framework Date: 10/13/2010 11:25:49 AM
.Net Framework : What is LINQ to SQL?

What is LINQ to SQL?

LINQ to SQL allows LINQ to be used to query SQL Server databases. It converts LINQ query to SQL quer....
Category: .Net Framework Date: 10/13/2010 11:15:48 AM
.Net Framework : How can you start asynchronous operation?

How can you start asynchronous operation?

You can call BeginInovke on delegate instance.
Category: .Net Framework Date: 10/13/2010 10:22:49 AM
.Net Framework : How can you filter runtime exceptions?

How can you filter runtime exceptions?

By using multiple catch blocks
Category: .Net Framework Date: 10/13/2010 8:38:48 AM