예제 #1
0
파일: IdxName.cs 프로젝트: xorllc/OpenKh
 public static string Lookup(Idx.Entry entry) =>
 _nameDictionary.TryGetValue(IdxDictionary.GetHash(entry), out var name) ? name : null;
예제 #2
0
파일: IdxName.cs 프로젝트: xorllc/OpenKh
 public static string Lookup(uint hash32, ushort hash16) =>
 _nameDictionary.TryGetValue(IdxDictionary.GetHash(hash32, hash16), out var name) ? name : null;