5 references to VolumeSeparatorChar
Microsoft.CodeAnalysis (5)
FileSystem\PathUtilities.cs (5)
260else if (length >= 2 && path[1] == VolumeSeparatorChar) 341if (path.Length >= 2 && path[1] == VolumeSeparatorChar && (path.Length <= 2 || !IsDirectorySeparator(path[2]))) 386return path.Length >= 3 && path[1] == VolumeSeparatorChar && IsDirectorySeparator(path[2]); 441if (!IsDirectorySeparator(c) && c != VolumeSeparatorChar) 628private static readonly char[] s_pathChars = new char[] { VolumeSeparatorChar, DirectorySeparatorChar, AltDirectorySeparatorChar };