예제 #1
0
 public FastConcurrentDictionary(
     int initialBucketCount,
     FastConcurrentDictionary <TKey, TValue, TComparer> src)
 {
     this.inner = new FastDictionary <TKey, TValue, TComparer>(initialBucketCount, src);
 }
예제 #2
0
 public FastConcurrentDictionary(FastConcurrentDictionary <TKey, TValue, TComparer> src)
 {
     this.inner = new FastDictionary <TKey, TValue, TComparer>(src);
 }