コード例 #1
0
 /// <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);
コード例 #2
0
 internal Mock(SystemGenerics.IEnumerable <SystemGenerics.KeyValuePair <TKey, TValue> > collection,
               SystemGenerics.IEqualityComparer <TKey> comparer)
     : base(collection, comparer) => this.Setup();
コード例 #3
0
 /// <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);
コード例 #4
0
 internal Mock(SystemGenerics.IEnumerable <SystemGenerics.KeyValuePair <TKey, TValue> > collection)
     : base(collection) => this.Setup();