Path::PathSeparator Field
.NET Framework (current version)
A platform-specific separator character used to separate path strings in environment variables.
Assembly: mscorlib (in mscorlib.dll)
On Windows-based desktop platforms, the value of this field is the semicolon (;) by default, but might vary on other platforms.
The following code example demonstrates the use of the PathSeparator field.
Console::WriteLine( "Path::AltDirectorySeparatorChar={0}", (Path::AltDirectorySeparatorChar).ToString() ); Console::WriteLine( "Path::DirectorySeparatorChar={0}", (Path::DirectorySeparatorChar).ToString() ); Console::WriteLine( "Path::PathSeparator={0}", (Path::PathSeparator).ToString() ); Console::WriteLine( "Path::VolumeSeparatorChar={0}", (Path::VolumeSeparatorChar).ToString() ); Console::Write( "Path::InvalidPathChars=" ); for ( int i = 0; i < Path::InvalidPathChars->Length; i++ ) Console::Write( Path::InvalidPathChars[ i ] ); Console::WriteLine(); // This code produces output similar to the following: // Note that the InvalidPathCharacters contain characters // outside of the printable character set. // // Path.AltDirectorySeparatorChar=/ // Path.DirectorySeparatorChar=\ // Path.PathSeparator=; // Path.VolumeSeparatorChar=:
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: