Lines Matching defs:wrapped
44 private readonly IDictionary<TKey, TValue> wrapped;
46 public ReadOnlyDictionary(IDictionary<TKey, TValue> wrapped)
48 this.wrapped = wrapped;
58 return wrapped.ContainsKey(key);
63 get { return wrapped.Keys; }
73 return wrapped.TryGetValue(key, out value);
78 get { return wrapped.Values; }
83 get { return wrapped[key]; }
99 return wrapped.Contains(item);
104 wrapped.CopyTo(array, arrayIndex);
109 get { return wrapped.Count; }
124 return wrapped.GetEnumerator();
129 return ((IEnumerable) wrapped).GetEnumerator();
134 return wrapped.Equals(obj);
139 return wrapped.GetHashCode();
144 return wrapped.ToString();