Compartir a través de


RuntimeEnvironment.GetRuntimeDirectory Método

Definición

Devuelve el directorio donde está instalado Common Language Runtime.

public:
 static System::String ^ GetRuntimeDirectory();
public static string GetRuntimeDirectory ();
static member GetRuntimeDirectory : unit -> string
Public Shared Function GetRuntimeDirectory () As String

Devoluciones

Cadena que contiene la ruta de acceso del directorio donde está instalado Common Language Runtime.

Ejemplos

En el ejemplo siguiente se muestra la forma de llamar al método GetRuntimeDirectory. Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase RuntimeEnvironment.

// 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())

Se aplica a