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

◆ MinimumCapacity

int System.Data.RecordManager.MinimumCapacity
getsetpackage

Definition at line 22 of file RecordManager.cs.

23 {
24 get
25 {
26 return _minimumCapacity;
27 }
28 set
29 {
31 {
32 if (value < 0)
33 {
34 throw ExceptionBuilder.NegativeMinimumCapacity();
35 }
37 }
38 }
39 }

Referenced by System.Data.DataTable.SerializeTableSchema().