RuntimeEnvironment.SystemConfigurationFile Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the path to the system configuration file.
public:
static property System::String ^ SystemConfigurationFile { System::String ^ get(); };
public static string SystemConfigurationFile { get; }
static member SystemConfigurationFile : string
Public Shared ReadOnly Property SystemConfigurationFile As String
Property Value
The path to the system configuration file.
Exceptions
.NET Core and .NET 5+ only: In all cases.
Examples
The following code example demonstrates the SystemConfigurationFile property. This code example is part of a larger example provided for the RuntimeEnvironment class.
// 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)