示例#1
0
 protected KeyedCollectionBase(ComparisonType comparisonType)
     : this(KeyComparer.CreateKeyComparer(comparisonType), 16)
 {
 }
示例#2
0
 protected KeyedCollectionBase(ComparisonType comparisonType, int capacity)
     : this(KeyComparer.CreateKeyComparer(comparisonType), capacity)
 {
 }
示例#3
0
 protected KeyedCollectionBase()
     : this(KeyComparer.CreateKeyComparer(ComparisonType.Ordinal), 16)
 {
 }