Question 303. What Is The Difference Between A Private Assembly And A Shared Assembly?
private assembly means one assembly may use for multiplle applications. shared assembly means more than one assembly used for one application. A private assembly is normally used by a single application, and is stored in the application's directory. A shared assembly is normally stored in the global assembly cache.