IKVM.Internal.VirtualFileSystem.IsVirtualFS C# (CSharp) Method

IsVirtualFS() static private method

static private IsVirtualFS ( string path ) : bool
path string
return bool
        internal static bool IsVirtualFS(string path)
        {
            return (path.Length == RootPath.Length - 1 && String.CompareOrdinal(path, 0, RootPath, 0, RootPath.Length - 1) == 0)
                || String.CompareOrdinal(path, 0, RootPath, 0, RootPath.Length) == 0;
        }