What is the difference between a private assembly and a shared assembly?
Answer Posted / Sachin
A private assembly (also known as a satellite assembly) is intended for use by a single application or set of applications. It's stored in the same directory as its application and does not need to be versioned.nA shared assembly (also known as a public assembly) is intended for reuse by multiple applications. It must have a strong name and version number, and it can be installed in the GAC.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers