The version of mscorlib.dll : Assembly « Reflection « VB.Net
- VB.Net
- Reflection
- Assembly
The version of mscorlib.dll
Imports System
Imports System.Reflection
<Assembly:AssemblyVersion("1.1.0.0")>
Class Example
Shared Sub Main()
Console.WriteLine("The version of mscorlib.dll is: {0} ",GetType(String).Assembly.GetName().Version)
End Sub
End Class
Related examples in the same category