CClash.DirectCompilerCacheServer.FileExists C# (CSharp) Метод

FileExists() публичный Метод

public FileExists ( string path ) : bool
path string
Результат bool
        public override bool FileExists(string path)
        {
            lock (hashcache)
            {
                if (hashcache.ContainsKey(path))
                    return true;
            }
            return base.FileExists(path);
        }