2 writes to _values
System.Runtime.Serialization.Formatters (2)
System\Runtime\Serialization\ObjectManager.cs (2)
1459_values = new long[startingSize]; 1520_values = temp;
9 references to _values
System.Runtime.Serialization.Formatters (9)
System\Runtime\Serialization\ObjectManager.cs (9)
1464if (_totalItems == _values.Length) 1468_values[_totalItems++] = value; 1478while (++_currentItem < _totalItems && _values[_currentItem] == -1) ; 1487Debug.Assert(_values[_currentItem] != -1, "[LongList.Current]m_values[m_currentItem]!=-1"); 1488return _values[_currentItem]; 1497if (_values[i] == value) 1506_values[i] = -1; 1512int newLength = _values.Length * 2; 1519Array.Copy(_values, temp, _count);