Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CopyToRows() [2/2]

void System.Data.Common.RowUpdatedEventArgs.CopyToRows ( DataRow[] array,
int arrayIndex )
inline

Definition at line 111 of file RowUpdatedEventArgs.cs.

112 {
113 DataRow[] dataRows = _dataRows;
114 if (dataRows != null)
115 {
116 dataRows.CopyTo(array, arrayIndex);
117 return;
118 }
119 if (array == null)
120 {
121 throw ADP.ArgumentNull("array");
122 }
124 }

References System.Data.Common.RowUpdatedEventArgs._dataRows, System.Data.Common.ADP.ArgumentNull(), System.array, System.arrayIndex, and System.Data.Common.RowUpdatedEventArgs.Row.