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

◆ Order

int System.ComponentModel.DataAnnotations.Schema.ColumnAttribute.Order
getset

Definition at line 14 of file ColumnAttribute.cs.

15 {
16 get
17 {
18 return _order;
19 }
20 set
21 {
22 if (value < 0)
23 {
24 throw new ArgumentOutOfRangeException("value");
25 }
26 _order = value;
27 }
28 }