Exemplo n.º 1
0
        void Remove(string inKeyString)
        {
            uint key = FNV1Hash.Calculate(inKeyString);

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

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

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

            return(_members[key]);
        }