示例#1
0
        public bool FileExists(uint hash)
        {
            if (Index2HashTableEntries == null)
            {
                return(false);
            }

            return(Index2HashTableEntries.ContainsKey(hash));
        }
示例#2
0
 public bool FileExists(uint hash)
 {
     return(Index2HashTableEntries.ContainsKey(hash));
 }