Mega Code Archive
Get Information from Assembly
Imports System
Imports System.Windows.Forms
Imports System.Reflection
Imports System.Runtime.InteropServices
'The following GUID is for the ID of the typelib if this project is exposed to COM
' Version information for an assembly consists of the following four values:
'
' Major Version
' Minor Version
' Build Number
' Revision
'
' You can specify all the values or you can default the Build and Revision Numbers
' by using the '*' as shown below:
'
Public Class MainClass
Shared Sub Main()
Console.WriteLine( Application.ProductName )
Console.WriteLine( Application.CompanyName )
Console.WriteLine( Application.ProductVersion )
End Sub
End Class