3 writes to _count
System.Data.Common (3)
System\Data\DataError.cs (3)
56_count++; 86_count--; 100_count = 0;
14 references to _count
System.Data.Common (14)
System\Data\DataError.cs (14)
35internal bool HasErrors => _rowError.Length != 0 || _count != 0; 54if (i == _count) 63for (int i = 0; i < _count; i++) 76if (_count == 0) 81for (int i = 0; i < _count; i++) 85Array.Copy(_errorList, i + 1, _errorList, i, _count - i - 1); 95for (int i = 0; i < _count; i++) 106var cols = new DataColumn[_count]; 108for (int i = 0; i < _count; i++) 131for (int i = 0; i < _count; i++) 139if (_count >= _errorList!.Length) 141int newCapacity = Math.Min(_count * 2, column.Table!.Columns.Count); 143Array.Copy(_errorList, biggerList, _count); 146return _count;