3 writes to count
System.Data (3)
fx\src\data\System\Data\DataError.cs (3)
66
count
++;
86
count
--;
98
count
= 0;
14 references to count
System.Data (14)
fx\src\data\System\Data\DataError.cs (14)
43
return(rowError.Length != 0 ||
count
!= 0);
65
if (i ==
count
)
71
for (int i = 0; i <
count
; i++) {
80
if (
count
== 0)
83
for (int i = 0; i <
count
; i++) {
85
System.Array.Copy(errorList, i+1, errorList, i,
count
-i-1);
94
for (int i = 0; i <
count
; i++) {
103
DataColumn[] cols = new DataColumn[
count
];
105
for (int i = 0; i <
count
; i++) {
123
for (int i = 0; i <
count
; i++) {
129
if (
count
>= errorList.Length) {
130
int newCapacity = Math.Min(
count
*2, column.Table.Columns.Count);
132
System.Array.Copy(errorList, 0, biggerList, 0,
count
);
135
return
count
;