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);
        }