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

◆ Sort

string System.Data.DataViewSetting.Sort
getset

Definition at line 78 of file DataViewSetting.cs.

79 {
80 get
81 {
82 return _sort;
83 }
84 [param: AllowNull]
85 set
86 {
87 if (value == null)
88 {
89 value = string.Empty;
90 }
91 if (_sort != value)
92 {
93 _sort = value;
94 }
95 }
96 }