void Remove(string inKeyString) { uint key = FNV1Hash.Calculate(inKeyString); Remove(key); }
T GetAs <T>(string inKeyString) { uint key = FNV1Hash.Calculate(inKeyString); return(GetAs <T>(key)); }
void Set(string inKeyString, object inValue) { uint key = FNV1Hash.Calculate(inKeyString); Set(key, inValue); }
object GetData(string inKeyString) { uint key = FNV1Hash.Calculate(inKeyString); return(_members[key]); }