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

◆ Row

DataRow? System.Data.DBConcurrencyException.Row
getset

Definition at line 13 of file DBConcurrencyException.cs.

14 {
15 get
16 {
17 DataRow[] dataRows = _dataRows;
18 if (dataRows == null || dataRows.Length == 0)
19 {
20 return null;
21 }
22 return dataRows[0];
23 }
25 set
26 {
27 _dataRows = new DataRow[1] { value };
28 }
29 }