4 references to AltDirectorySeparatorChar
Microsoft.CodeAnalysis.Workspaces (4)
src\Compilers\Core\Portable\FileSystem\PathUtilities.cs (4)
36
public static bool IsDirectorySeparator(char c) => c == DirectorySeparatorChar || c ==
AltDirectorySeparatorChar
;
501
|| assemblyDisplayNameOrPath.IndexOf(
AltDirectorySeparatorChar
) != -1;
628
private static readonly char[] s_pathChars = new char[] { VolumeSeparatorChar, DirectorySeparatorChar,
AltDirectorySeparatorChar
};
841
if (!isDriveRooted && !(p.Length > 1 && p[0] ==
AltDirectorySeparatorChar
))