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

◆ this[string name]

override DataRelation System.Data.DataRelationCollection.DataTableRelationCollection.this[string name]
get

Definition at line 36 of file DataRelationCollection.cs.

37 {
38 get
39 {
40 int num = InternalIndexOf(name);
41 if (num == -2)
42 {
43 throw ExceptionBuilder.CaseInsensitiveNameConflict(name);
44 }
45 if (num >= 0)
46 {
47 return (DataRelation)List[num];
48 }
49 return null;
50 }
51 }