Esempio n. 1
0
			internal HashListEnumerator(HashList hashList, EnumerationMode mode)
			{
				_hashList = hashList;
				_mode = mode;
				_version = hashList._version;
				_orderList = hashList._insertionOrderList;
				_index = 0;
				_key = null;
				_value = null;
			}
Esempio n. 2
0
 internal HashListEnumerator(HashList hashList, EnumerationMode mode)
 {
     _hashList  = hashList;
     _mode      = mode;
     _version   = hashList._version;
     _orderList = hashList._insertionOrderList;
     _index     = 0;
     _key       = null;
     _value     = null;
 }
Esempio n. 3
0
			internal ValueCollection(HashList hashList)
			{
				_hashList = hashList;
			}
Esempio n. 4
0
			internal KeyCollection(HashList hashList)
			{
				_hashList = hashList;
			}
Esempio n. 5
0
 internal ValueCollection(HashList hashList)
 {
     _hashList = hashList;
 }
Esempio n. 6
0
 internal KeyCollection(HashList hashList)
 {
     _hashList = hashList;
 }