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

◆ GetIndexDesc()

IndexField[] System.Data.DataKey.GetIndexDesc ( )
inlinepackage

Definition at line 164 of file DataKey.cs.

165 {
166 IndexField[] array = new IndexField[_columns.Length];
167 for (int i = 0; i < _columns.Length; i++)
168 {
169 array[i] = new IndexField(_columns[i], isDescending: false);
170 }
171 return array;
172 }
readonly DataColumn[] _columns
Definition DataKey.cs:5

References System.Data.DataKey._columns, and System.array.

Referenced by System.Data.DataKey.GetSortIndex().