5 references to VolumeSeparatorChar
Microsoft.CodeAnalysis.Workspaces (5)
PathUtilities.cs (5)
259else if (length >= 2 && path[1] == VolumeSeparatorChar) 340if (path.Length >= 2 && path[1] == VolumeSeparatorChar && (path.Length <= 2 || !IsDirectorySeparator(path[2]))) 385return path.Length >= 3 && path[1] == VolumeSeparatorChar && IsDirectorySeparator(path[2]); 440if (!IsDirectorySeparator(c) && c != VolumeSeparatorChar) 624private static readonly char[] s_pathChars = new char[] { VolumeSeparatorChar, DirectorySeparatorChar, AltDirectorySeparatorChar };