本文整理汇总了C#中System.Runtime.InteropServices.RuntimeEnvironment类的典型用法代码示例。如果您正苦于以下问题:C# RuntimeEnvironment类的具体用法?C# RuntimeEnvironment怎么用?C# RuntimeEnvironment使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
RuntimeEnvironment类属于System.Runtime.InteropServices命名空间,在下文中一共展示了RuntimeEnvironment类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
//引入命名空间
using System;
using System.Reflection;
using System.Runtime.InteropServices;
public sealed class App
{
static void Main()
{
// Show whether the EXE assembly was loaded from the GAC or from a private subdirectory.
Assembly assem = typeof(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);
}
}
输出:
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