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

◆ RowCount

int System.Data.DBConcurrencyException.RowCount
get

Definition at line 31 of file DBConcurrencyException.cs.

32 {
33 get
34 {
35 DataRow[] dataRows = _dataRows;
36 if (dataRows == null)
37 {
38 return 0;
39 }
40 return dataRows.Length;
41 }
42 }