Ejemplo 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;
			}
Ejemplo 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;
 }
Ejemplo n.º 3
0
			internal ValueCollection(HashList hashList)
			{
				_hashList = hashList;
			}
Ejemplo n.º 4
0
			internal KeyCollection(HashList hashList)
			{
				_hashList = hashList;
			}
Ejemplo n.º 5
0
 internal ValueCollection(HashList hashList)
 {
     _hashList = hashList;
 }
Ejemplo n.º 6
0
 internal KeyCollection(HashList hashList)
 {
     _hashList = hashList;
 }