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

◆ RemoveAt()

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

Definition at line 598 of file ConstraintCollection.cs.

599 {
600 Constraint constraint = this[index];
601 if (constraint == null)
602 {
603 throw ExceptionBuilder.ConstraintOutOfRange(index);
604 }
605 Remove(constraint);
606 }

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