RuntimeEnvironment クラス
アセンブリ: mscorlib (mscorlib.dll 内)

<ComVisibleAttribute(True)> _ Public Class RuntimeEnvironment
[ComVisibleAttribute(true)] public class RuntimeEnvironment
ComVisibleAttribute(true) public class RuntimeEnvironment

RuntimeEnvironment クラスによって定義される多数のメソッドを呼び出す方法を次の例に示します。
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. Console.WriteLine("Did the {0} assembly load from the GAC? {1}" , Assembly.GetExecutingAssembly(), RuntimeEnvironment.FromGlobalAccessCache(Assembly.GetExecutingAssembly())); // 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); } } // This code produces the following output. // // 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
using namespace System; using namespace System::Reflection; using namespace System::Runtime::InteropServices; int main() { // Show whether the EXE assembly was loaded from the GAC or from a // private subdirectory. Console::WriteLine("Did the {0} assembly load from the GAC? {1}", Assembly::GetExecutingAssembly(), RuntimeEnvironment::FromGlobalAccessCache( Assembly::GetExecutingAssembly())); // 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); } // This code produces the following output. // // 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

System.Runtime.InteropServices.RuntimeEnvironment


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- RuntimeEnvironment クラスのページへのリンク