2 writes to errorList
System.Data (2)
fx\src\data\System\Data\DataError.cs (2)
59errorList = new ColumnError[initialCapacity]; 133errorList = biggerList;
14 references to errorList
System.Data (14)
fx\src\data\System\Data\DataError.cs (14)
58if (errorList == null) { 62errorList[i].column = column; 63errorList[i].error = error; 72if (errorList[i].column == column) { 73return errorList[i].error; 84if (errorList[i].column == column) { 85System.Array.Copy(errorList, i+1, errorList, i, count-i-1); 95errorList[i].column.errors--; 96Debug.Assert(errorList[i].column.errors >= 0, "missing error counts"); 106cols[i] = errorList[i].column; 124if (errorList[i].column == column) { 129if (count >= errorList.Length) { 132System.Array.Copy(errorList, 0, biggerList, 0, count);