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

◆ IndexOf() [2/4]

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

Definition at line 239 of file CaptureCollection.cs.

240 {
241 if (!(value is Capture item))
242 {
243 return -1;
244 }
245 return ((IList<Capture>)this).IndexOf(item);
246 }

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