6bdd276d05
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
15 lines
281 B
C#
15 lines
281 B
C#
namespace System.IO
|
|
{
|
|
static class PathInternal
|
|
{
|
|
public static bool IsPartiallyQualified (string path)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public static bool HasIllegalCharacters (string path, bool checkAdditional)
|
|
{
|
|
return path.IndexOfAny (Path.InvalidPathChars) != -1;
|
|
}
|
|
}
|
|
} |