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

◆ RemoveAt()

void System.Data.DataRelationCollection.RemoveAt ( int index)
inlineinherited

Definition at line 719 of file DataRelationCollection.cs.

720 {
721 DataRelation dataRelation = this[index];
722 if (dataRelation == null)
723 {
724 throw ExceptionBuilder.RelationOutOfRange(index);
725 }
726 Remove(dataRelation);
727 }

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