Mega Code Archive
Categories
/
VB.Net
/
Reflection
The version of mscorlib dll
Imports System Imports System.Reflection
Class Example Shared Sub Main() Console.WriteLine("The version of mscorlib.dll is: {0} ",GetType(String).Assembly.GetName().Version) End Sub End Class