(VFS.PathSepratorChars): made public.

This commit is contained in:
morkt 2017-04-10 22:19:16 +04:00
parent a4bd5caf05
commit e0a5e95081

View File

@ -787,7 +787,7 @@ namespace GameRes
public static readonly ISet<char> InvalidFileNameChars = new HashSet<char> (Path.GetInvalidFileNameChars()); public static readonly ISet<char> InvalidFileNameChars = new HashSet<char> (Path.GetInvalidFileNameChars());
static readonly char[] PathSeparatorChars = { '\\', '/', ':' }; public static readonly char[] PathSeparatorChars = { '\\', '/', ':' };
/// <summary> /// <summary>
/// Returns true if given <paramref name="path"/> points to a specified <paramref name="filename"/>. /// Returns true if given <paramref name="path"/> points to a specified <paramref name="filename"/>.