Método RuntimeEnvironment.GetRuntimeDirectory ()
Dica
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.
Retorna o diretório no qual o Common Language Runtime está instalado.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (em mscorlib.dll)
Sintaxe
public static string GetRuntimeDirectory()
public:
static String^ GetRuntimeDirectory()
static member GetRuntimeDirectory : unit -> string
Public Shared Function GetRuntimeDirectory As String
Valor Retornado
Type: System.String
Uma cadeia de caracteres que contém o caminho para o diretório no qual o Common Language Runtime está instalado.
Exemplos
O exemplo a seguir demonstra a chamar o GetRuntimeDirectory método. Este exemplo de código é parte de um exemplo maior fornecido para a RuntimeEnvironment classe.
// 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());
Segurança
for accessing files and folders. Associated enumeration: F:System.Security.Permissions.FileIOPermissionAccess.PathDiscovery
Informações de Versão
.NET Framework
Disponível desde 1.1
Confira Também
Classe RuntimeEnvironment
Namespace System.Runtime.InteropServices
Retornar ao início