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