Interview Question
Qus: What is strongName in Assembly?
A strong name consists of the assembly's identity—its simple text name, version number, and culture information (if provided)—plus a public key and a digital signature. It is generated from an assembly file using the corresponding private key. It gives a unique name to each assembly of various versions. This allows solving the DLL hell problem.
Answers (2)