Compartir a través de


Método RuntimeEnvironment.GetRuntimeDirectory ()

 

Publicado: octubre de 2016

Devuelve el directorio donde está instalado common language runtime.

Espacio de nombres:   System.Runtime.InteropServices
Ensamblado:  mscorlib (en mscorlib.dll)

Sintaxis

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

Valor devuelto

Type: System.String

Cadena que contiene la ruta de acceso al 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 forma parte de un ejemplo mayor proporcionado para el RuntimeEnvironment clase.

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

Seguridad

FileIOPermission

for accessing files and folders. Associated enumeration: F:System.Security.Permissions.FileIOPermissionAccess.PathDiscovery

Información de versión

.NET Framework
Disponible desde 1.1

Ver también

Clase RuntimeEnvironment
Espacio de nombres System.Runtime.InteropServices

Volver al principio