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

◆ SortIndex

Index System.Data.DataColumn.SortIndex
getprivate

Definition at line 820 of file DataColumn.cs.

821 {
822 get
823 {
824 if (_sortIndex == null)
825 {
826 IndexField[] indexDesc = new IndexField[1]
827 {
828 new IndexField(this, isDescending: false)
829 };
830 _sortIndex = _table.GetIndex(indexDesc, DataViewRowState.CurrentRows, null);
832 }
833 return _sortIndex;
834 }
835 }
Index GetIndex(IndexField[] indexDesc)
void AddRef()
Definition Index.cs:196

Referenced by System.Data.DataColumn.CheckUnique(), and System.Data.DataColumn.IsNotAllowDBNullViolated().