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

◆ IndexOf() [2/4]

int IList. System.Text.RegularExpressions.MatchCollection.IndexOf ( object value)
inlineprivate

Definition at line 256 of file MatchCollection.cs.

257 {
258 if (!(value is Match item))
259 {
260 return -1;
261 }
262 return ((IList<Match>)this).IndexOf(item);
263 }

References System.item, and System.Text.RegularExpressions.value.