Wednesday, September 7, 2011

What is an Assembly in .net…………………..?

What is an Assembly in .net…………………..?

An assembly is a resource file, using these assemblies we can develop our .net applications.

It contains classes, interfaces etc. it also contains self information like

Name: name of the Assembly

Version: version of Assembly

Security: who can access this Assembly etc..

Example:

I am developing a project in this project I need some JavaScript functionality. For this I need some JavaScript classes

I want use some functionality from that classes. In order to get the these functionality(method) I to write that class in my project(all code of that class). Instead of that am simply adding that assembly into my project then am getting all the classes whatever assembly contains. Through this am easily getting my functionality.

No comments:

Post a Comment