本文整理汇总了VB.NET中System.Runtime.InteropServices.RuntimeEnvironment类的典型用法代码示例。如果您正苦于以下问题:VB.NET RuntimeEnvironment类的具体用法?VB.NET RuntimeEnvironment怎么用?VB.NET RuntimeEnvironment使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了RuntimeEnvironment类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Main
' 导入命名空间
Imports System.Reflection
Imports System.Runtime.InteropServices
Public NotInheritable Class App
Shared Sub Main()
' Show whether the EXE assembly was loaded from the GAC or from a private subdirectory.
Dim assem As Assembly = GetType(App).Assembly
Console.WriteLine("Did the {0} assembly load from the GAC? {1}",
assem, RuntimeEnvironment.FromGlobalAccessCache(assem))
' Show the path where the CLR was loaded from.
Console.WriteLine("Runtime directory: {0}", RuntimeEnvironment.GetRuntimeDirectory())
' Show the CLR's version number.
Console.WriteLine("System version: {0}", RuntimeEnvironment.GetSystemVersion())
' Show the path of the machine's configuration file.
Console.WriteLine("System configuration file: {0}", RuntimeEnvironment.SystemConfigurationFile)
End Sub
End Class
输出:
Did the RuntimeEnvironment, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null assembly load from the GAC? False Runtime directory: C:\WINDOWS\Microsoft.NET\Framework\v2.0.40607\ System version: v2.0.40607 System configuration file: C:\WINDOWS\Microsoft.NET\Framework\v2.0.40607\config\ machine.config