What is assembly in .NET and What do you mean by protected class always present in the same assembly?

Questions by goldjoy

Showing Answers 1 - 5 of 5 Answers

Suma

  • Nov 29th, 2006
 

An assembly is a single deployable unit that contains all info about the implementation of classes , structures and interfaces.

  Was this answer useful?  Yes

suneetha

  • Dec 18th, 2006
 

Assemblies are the building blocks of .NET applications. An assembly can consist of a single executable file or a number of executable and resource files that contain information necessary for deploying and maintaining the versions of an application. You can think of an assembly as a logical EXE or DLL. One or more assemblies are combined to form an application.

Every assembly is self-describing through metadata. .NET can automatically locate referenced assemblies.

  Was this answer useful?  Yes

sunitha@gmail.com

  • Jan 3rd, 2007
 

protected class in same assembly always gives a public access to members  of containg assembly and acts as  private class  to other assemblies. 

  Was this answer useful?  Yes

aviral

  • Jan 17th, 2007
 

i want to know how to edit the data in the grid

how to make the managed code in c++

  Was this answer useful?  Yes

Priestly George Varghese

  • Sep 6th, 2007
 

Assemblies are building blocks of framework. There are mainly two types of assemblies
a) Private Assembly
b) Shared Assembly

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions