4 references to AltDirectorySeparatorChar
Microsoft.CodeAnalysis.InteractiveHost (4)
PathUtilities.cs (4)
35
public static bool IsDirectorySeparator(char c) => c == DirectorySeparatorChar || c ==
AltDirectorySeparatorChar
;
500
|| assemblyDisplayNameOrPath.IndexOf(
AltDirectorySeparatorChar
) != -1;
624
private static readonly char[] s_pathChars = new char[] { VolumeSeparatorChar, DirectorySeparatorChar,
AltDirectorySeparatorChar
};
791
if (!isDriveRooted && !(p.Length > 1 && p[0] ==
AltDirectorySeparatorChar
))