There is shared assemblies which is used for diffrenent language interpotability.
An assembly is logical unit of code. it is physically exists in the DLL/EXE Assemblies of two types private assemblies shared assemblies the assembly which is used by single application is called private assembly shared assembly is known as global assembly it is nothing but a special disk folder where all the shared assembly will be kept
Answer : There is shared assemblies which is used for diffrenent language interpotability. ? CoolInterview.com
-------------------------------------------------------------------------------- An assembly is logical unit of code. it is physically exists in the DLL/EXE Assemblies of two types private assemblies shared assemblies the assembly which is used by single application is called private assembly shared assembly is known as global assembly it is nothing but a special disk folder where all the shared assembly will be kept
There are Three types of Assemblies, 1) Private Assemblies 2) Public Assemblies 3) Satellite Assemblies
A Private Assemblies is normally used by a single Application, and is stored in the Application's Directory, or a Sub- Directory beneath.
A Shared Assemblies is normally stored in the Global Assembly Cache. A Shared Assemblies are usually libraries of code which many applications will use.
A Satellite Assemblies are assemblies which donot contain source code. They only contain Resource files.
C# provides a default constructor for me. I write a constructor that takes a string as a parameter, but want to keep the no parameter one. How many constructors should I write?