Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are the Types of Assemblies?
What are the Types of Assemblies?
✍: Guest
Assemblies are of two types:
1. Private Assemblies
2. Shared Assemblies
Private Assemblies: The assembly is intended only for one application. The files of that assembly must be placed in the same folder as the application or in a sub folder. No other application will be able to make a call to this assembly. The advantage of having a private assembly is that, it makes naming the assembly very easy, since the developer need not worry about name clashes with other assemblies. As long as the assembly has a unique name within the concerned application, there won't be any problems.
Shared Assemblies: If the assembly is to be made into a Shared Assembly, then the naming conventions are very strict since it has to be unique across the entire system. The naming conventions should also take care of newer versions of the component being shipped. These are accomplished by giving the assembly a Shared
Name. Then the assembly is placed in the global assembly cache, which is a folder in the file system reserved for shared assemblies.
2013-10-31, 2009👍, 0💬
Popular Posts:
How To Define a Data Source Name (DSN) in ODBC Manager? - Oracle DBA FAQ - ODBC Drivers, DSN Configu...
How To Change the Password of Another User Account? - MySQL FAQs - Managing User Accounts and Access...
How do I install JUnit? First I will download the lastest version of JUnit. Then I will extract all ...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
What exactly happens when ASPX page is requested from Browser? Note: - Here the interviewer is expec...