RuntimeEnvironment.GetRuntimeDirectory-Methode: ()
Veröffentlicht: Oktober 2016
Gibt das Verzeichnis, in dem die common Language Runtime installiert ist.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (in mscorlib.dll)
Syntax
public static string GetRuntimeDirectory()
public:
static String^ GetRuntimeDirectory()
static member GetRuntimeDirectory : unit -> string
Public Shared Function GetRuntimeDirectory As String
Rückgabewert
Type: System.String
Eine Zeichenfolge mit dem Pfad zu dem Verzeichnis, in dem die common Language Runtime installiert ist.
Beispiele
Im folgenden Beispiel wird das Aufrufen der GetRuntimeDirectory-Methode veranschaulicht. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die RuntimeEnvironment Klasse.
// Show the path where the CLR was loaded from.
Console.WriteLine("Runtime directory: {0}", RuntimeEnvironment.GetRuntimeDirectory());
' Show the path where the CLR was loaded from.
Console.WriteLine("Runtime directory: {0}", RuntimeEnvironment.GetRuntimeDirectory())
// Show the path where the CLR was loaded from.
Console::WriteLine("Runtime directory: {0}",
RuntimeEnvironment::GetRuntimeDirectory());
Sicherheit
for accessing files and folders. Associated enumeration: F:System.Security.Permissions.FileIOPermissionAccess.PathDiscovery
Versionsinformationen
.NET Framework
Verfügbar seit 1.1
Siehe auch
RuntimeEnvironment-Klasse
System.Runtime.InteropServices-Namespace
Zurück zum Anfang