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

◆ GetValues()

override int System.Data.Common.DataRecordInternal.GetValues ( object[] values)
inline

Implements System.Data.IDataRecord.

Definition at line 31 of file DataRecordInternal.cs.

32 {
33 if (values == null)
34 {
35 throw ADP.ArgumentNull("values");
36 }
37 int num = ((values.Length < _schemaInfo.Length) ? values.Length : _schemaInfo.Length);
38 for (int i = 0; i < num; i++)
39 {
40 values[i] = _values[i];
41 }
42 return num;
43 }

References System.Data.Common.DataRecordInternal._schemaInfo, System.Data.Common.DataRecordInternal._values, System.Data.Common.ADP.ArgumentNull(), and System.values.