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)
35
internal bool HasErrors => _rowError.Length != 0 ||
_count
!= 0;
54
if (i ==
_count
)
63
for (int i = 0; i <
_count
; i++)
76
if (
_count
== 0)
81
for (int i = 0; i <
_count
; i++)
85
Array.Copy(_errorList, i + 1, _errorList, i,
_count
- i - 1);
95
for (int i = 0; i <
_count
; i++)
106
var cols = new DataColumn[
_count
];
108
for (int i = 0; i <
_count
; i++)
131
for (int i = 0; i <
_count
; i++)
139
if (
_count
>= _errorList!.Length)
141
int newCapacity = Math.Min(
_count
* 2, column.Table!.Columns.Count);
143
Array.Copy(_errorList, biggerList,
_count
);
146
return
_count
;