InterviewSolution
| 1. |
What are the different types of Assemblies? |
Answer»
Private assembly functions by coping in application folders separately, where we require to use the assembly’s functionalities; In this case, the features does not FUNCTION without copying. In short, it means EVERY time we have to exclusively copy into the BIN FOLDER of each application folder for the functioning of the private assembly.
Public assembly is also known as Shared assembly does not require to copy separately into all application folders. Only one single copy is required at system level. Like the private assembly, there is no need to copy the assembly into the application folder. It should be installed in GAC (Global assembly cache).
The LANGUAGE and culture-specific resources for an application are being deployed with the help of satellite assembly. |
|