What are the different types of assemblies available and their purpose?
Answer Posted / Ravish Kumar
In .NET, there are several types of assemblies: single-file assemblies (contain all necessary files in a single .dll or .exe file), multi-file assemblies (consist of multiple files, including the main executable and supporting .dll files), client-accessible assemblies (can be accessed by other applications outside the assembly's application domain), private assemblies (can only be accessed by the application that references them), and satellite assemblies (contain localized resources for different cultures). Assemblies are used to package and distribute code, resources, and metadata in a modular and version-controlled manner.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers