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

◆ this[int index]

Constraint System.Data.ConstraintCollection.this[int index]
get

Definition at line 26 of file ConstraintCollection.cs.

27 {
28 get
29 {
30 if (index >= 0 && index < List.Count)
31 {
32 return (Constraint)List[index];
33 }
34 throw ExceptionBuilder.ConstraintOutOfRange(index);
35 }
36 }