Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
this[string? name]
Constraint
? System.Data.ConstraintCollection.this[
string
? name]
get
Definition at line
40
of file
ConstraintCollection.cs
.
41
{
42
get
43
{
44
int
num =
InternalIndexOf
(name);
45
if
(num == -2)
46
{
47
throw
ExceptionBuilder.CaseInsensitiveNameConflict(name);
48
}
49
if
(num >= 0)
50
{
51
return
(Constraint)
List
[num];
52
}
53
return
null
;
54
}
55
}
System.Data.ConstraintCollection.InternalIndexOf
int InternalIndexOf(string constraintName)
Definition
ConstraintCollection.cs:527
System.Data.ConstraintCollection.List
override ArrayList List
Definition
ConstraintCollection.cs:24
System
Data
ConstraintCollection
Generated by
1.10.0