TryGetValue() protected static method

protected static TryGetValue ( Bucket buckets, object key, int hc, Func eqFunc, object &value ) : bool
buckets Bucket
key object
hc int
eqFunc Func
value object
return bool
Beispiel #1
0
        public override bool TryGetValue(object key, out object value)
        {
            if (key is string && TryGetExtraValue((string)key, out value))
            {
                return(value != Uninitialized.Instance);
            }

            return(_storage.TryGetValue(key, out value));
        }
Beispiel #2
0
 public override bool TryGetValue(object key, out object value)
 {
     return(_storage.TryGetValue(key, out value));
 }