Assembly in Dot Net C#
Assembly -------------------- Assembly is the final output after twice-compilation of all C# codes. W.r.t Program Access, assemlies can be classified into 2 - types. • Private Assembly • Shared Assembly. Private Assembly --------------------- The default assembly created is 'private assembly'. A private assembly is limited to one application only. The private assembly should be kept at \Bin folder of an ASP.NET application. Shared Assembly --------------------- A shared Assembly is usable by all applications within the system. All shared assemblies are LISTED in GAC ['Jack'] - Global Assembly Cache GAC Folder is: C:\Windows\assembly\ A 'private assembly' can be made 'shared assembly'. How To Make a Private Assembly - Shared ----------------------------------------------------- Only a 'Strong Named Private As...