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

◆ RowCount

int System.Data.Common.RowUpdatedEventArgs.RowCount
get

Definition at line 41 of file RowUpdatedEventArgs.cs.

42 {
43 get
44 {
45 DataRow[] dataRows = _dataRows;
46 if (dataRows == null)
47 {
48 if (_dataRow == null)
49 {
50 return 0;
51 }
52 return 1;
53 }
54 return dataRows.Length;
55 }
56 }