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

◆ Remove() [2/2]

void System.Data.ConstraintCollection.Remove ( string name)
inline

Definition at line 608 of file ConstraintCollection.cs.

609 {
610 Constraint constraint = this[name];
611 if (constraint == null)
612 {
613 throw ExceptionBuilder.ConstraintNotInTheTable(name);
614 }
615 Remove(constraint);
616 }

References System.Data.ExceptionBuilder.ConstraintNotInTheTable(), and System.ComponentModel.Remove.