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

◆ this[int i]

virtual Match System.Text.RegularExpressions.MatchCollection.this[int i]
get

Definition at line 86 of file MatchCollection.cs.

87 {
88 get
89 {
90 Match result = null;
91 if (i < 0 || (result = GetMatch(i)) == null)
92 {
93 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.i);
94 }
95 return result;
96 }
97 }