1 write to ItemArray
System.Data.Common (1)
System\Data\DataRowCollection.cs (1)
112
row.
ItemArray
= values;
8 references to ItemArray
Microsoft.Data.Analysis.Tests (1)
DataFrame.IOTests.cs (1)
1188
var resVals = table.Rows.Cast<DataRow>().Select(row => row.
ItemArray
).ToArray();
System.Data.Common (7)
System\Data\DataRow.cs (1)
438
throw ExceptionBuilder.ArgumentNull(nameof(
ItemArray
));
System\Data\DataTableExtensions.cs (1)
159
values = current.
ItemArray
;
System\Data\DataTableReader.cs (5)
680
Array.Copy(_currentDataRow!.
ItemArray
, values, _currentDataRow.
ItemArray
.Length > values.Length ? values.Length : _currentDataRow.
ItemArray
.Length);
681
return (_currentDataRow.
ItemArray
.Length > values.Length ? values.Length : _currentDataRow.
ItemArray
.Length);