What code can I use to display my program's version number (Major, Minor, Build, Revision), on the Console?
Printable View
What code can I use to display my program's version number (Major, Minor, Build, Revision), on the Console?
Msgbox(Application.ProductVersion)
or
Code:Console.WriteLine("Product Version: " & Application.ProductVersion)
can you get the parts of this from any variables? or you just have to parse this property?
nevermind... found it.. gotta love MSDN :D
VB Code:
Dim VersionInfo As New System.Version(Application.ProductVersion)