Exemple #1
0
        void Remove(string inKeyString)
        {
            uint key = FNV1Hash.Calculate(inKeyString);

            Remove(key);
        }
Exemple #2
0
        T GetAs <T>(string inKeyString)
        {
            uint key = FNV1Hash.Calculate(inKeyString);

            return(GetAs <T>(key));
        }
Exemple #3
0
        void Set(string inKeyString, object inValue)
        {
            uint key = FNV1Hash.Calculate(inKeyString);

            Set(key, inValue);
        }
Exemple #4
0
        object GetData(string inKeyString)
        {
            uint key = FNV1Hash.Calculate(inKeyString);

            return(_members[key]);
        }