VB.NET - What do you understand by side-by-site execution of assembly?

What do you understand by side-by-site execution of assembly?

Side by side execution refers to running/execution of different versions of the same assembly at the same time on the same machine. It gives us more control over the versioning of the assembly. When you strong name an assembly, version number becomes a part of its identity, and thus we can register different version of the same assembly in the GAC and execute them side by side.
VB.NET - How do you create a resource-only assembly?
How do you create a resource-only assembly? - One should create a resource only assembly if you need to update the resources frequently without recompiling the whole solution......
VB.NET - Explain how to retrieve resources using ResourceManager class.
Explain how to retrieve resources using ResourceManager class - Use ResourceManager class to retrieve resources that exist in an assembly.......
VB.NET - How do you install assembly to the Global Assembly Cache?
How do you install assembly to the Global Assembly Cache? - Using Gacutil.exe:eg: gacutil -i MyLibrary.dll.....
Post your comment