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

◆ GetAllFields()

static IndexField[] System.Data.Index.GetAllFields ( DataColumnCollection columns)
inlinestaticprivate

Definition at line 98 of file Index.cs.

99 {
100 IndexField[] array = new IndexField[columns.Count];
101 for (int i = 0; i < array.Length; i++)
102 {
103 array[i] = new IndexField(columns[i], isDescending: false);
104 }
105 return array;
106 }

References System.array, and System.Collections.Generic.Dictionary< TKey, TValue >.Count.