开发者

what is version of an assembly? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.

Want to improve this question? Add details and clarify the problem by editing this post.

Closed 8 years ago.

Improve this question

i 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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜