what is version of an assembly? [closed]
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this questioni am confuse with what is version of an assembly开发者_StackOverflow社区?
In .NET, each assembly has a version number as part of its identity.
This version information for each assembly is stored within the assembly manifest along with various other meta-data regarding the assembly like name, strong name, types exposed, types referenced etc
As such, two assemblies that differ by version number are considered by the runtime to be completely different assemblies.
This version number is physically represented as a four-part string with the following format:
<major version>.<minor version>.<build number>.<revision>
eg:- abc.dll v1.1.100.200
Refer MSDN for more details.
精彩评论