separator


Description:

public static string separator ()

Returns the OS-specific path separator character.

On Linux and macOS, the separator is always "/". On Windows, the separator is "\\".

Example:

    assert (Path.separator () == "/");

Returns:

the path separator string.