How do you find out the build number?

timothy2l

Regular
Joined
Jul 3, 2003
Messages
61
v1.0.xxxx where xxxx is the build number of the .NET Framework you are using.

Can someone tell me how to find what "xxxx" is?

Thanks in advance.
 
In Visual Studio .NET, Open the Help Menu and choose About Microsoft Visual Basic .NET, you can check the version number of your VS .NET in addition to the .NET framework version + build number.

Hope this helps,
 
If you want to get it using code use this:
Visual Basic:
System.Environment.Version
You can get the whole version, or Major, Minor, Revision, or Build separately.
Visual Basic:
System.Environment.Version.Major
System.Environment.Version.Minor
System.Environment.Version.Revision
System.Environment.Version.Build
 
Back
Top