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

◆ RemoveAt()

void System.Data.DataColumnCollection.RemoveAt ( int index)
inline

Definition at line 724 of file DataColumnCollection.cs.

725 {
726 DataColumn dataColumn = this[index];
727 if (dataColumn == null)
728 {
729 throw ExceptionBuilder.ColumnOutOfRange(index);
730 }
732 }

References System.Data.ExceptionBuilder.ColumnOutOfRange(), System.index, and System.ComponentModel.Remove.