/// <summary> /// Initializes a new dictionary instance class that contains elements copied /// from the specified enumerable and uses the specified equality comparer. /// </summary> public static SystemGenerics.Dictionary <TKey, TValue> Create( SystemGenerics.IEnumerable <SystemGenerics.KeyValuePair <TKey, TValue> > collection, SystemGenerics.IEqualityComparer <TKey> comparer) => new Mock(collection, comparer);
internal Mock(SystemGenerics.IEnumerable <SystemGenerics.KeyValuePair <TKey, TValue> > collection, SystemGenerics.IEqualityComparer <TKey> comparer) : base(collection, comparer) => this.Setup();
/// <summary> /// Initializes a new dictionary instance class that contains elements copied /// from the specified enumerable. /// </summary> public static SystemGenerics.Dictionary <TKey, TValue> Create( SystemGenerics.IEnumerable <SystemGenerics.KeyValuePair <TKey, TValue> > collection) => new Mock(collection);
internal Mock(SystemGenerics.IEnumerable <SystemGenerics.KeyValuePair <TKey, TValue> > collection) : base(collection) => this.Setup();