共用方式為


RuntimeEnvironment.SystemConfigurationFile 屬性

定義

警告

RuntimeEnvironment members SystemConfigurationFile, GetRuntimeInterfaceAsIntPtr, and GetRuntimeInterfaceAsObject are not supported and throw PlatformNotSupportedException.

取得系統設定檔的路徑。

public:
 static property System::String ^ SystemConfigurationFile { System::String ^ get(); };
[System.Obsolete("RuntimeEnvironment members SystemConfigurationFile, GetRuntimeInterfaceAsIntPtr, and GetRuntimeInterfaceAsObject are not supported and throw PlatformNotSupportedException.", DiagnosticId="SYSLIB0019", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static string SystemConfigurationFile { get; }
public static string SystemConfigurationFile { get; }
[<System.Obsolete("RuntimeEnvironment members SystemConfigurationFile, GetRuntimeInterfaceAsIntPtr, and GetRuntimeInterfaceAsObject are not supported and throw PlatformNotSupportedException.", DiagnosticId="SYSLIB0019", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member SystemConfigurationFile : string
static member SystemConfigurationFile : string
Public Shared ReadOnly Property SystemConfigurationFile As String

屬性值

系統設定檔的路徑。

屬性

例外狀況

僅限 .NET Core 和 .NET 5+:適用於所有情況。

範例

以下範例說明了該 SystemConfigurationFile 性質。 此程式碼範例是本類別更大範例 RuntimeEnvironment 的一部分。

// Show the path of the machine's configuration file.
Console::WriteLine("System configuration file: {0}",
    RuntimeEnvironment::SystemConfigurationFile);
// Show the path of the machine's configuration file.
Console.WriteLine("System configuration file: {0}", RuntimeEnvironment.SystemConfigurationFile);
' Show the path of the machine's configuration file.
Console.WriteLine("System configuration file: {0}", RuntimeEnvironment.SystemConfigurationFile)

適用於