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

◆ Matches() [1/5]

MatchCollection System.Text.RegularExpressions.Regex.Matches ( string input)
inline

Definition at line 496 of file Regex.cs.

497 {
498 if (input == null)
499 {
500 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.input);
501 }
502 return new MatchCollection(this, input, UseOptionR() ? input.Length : 0);
503 }

References System.Text.RegularExpressions.input, System.Text.RegularExpressions.ThrowHelper.ThrowArgumentNullException(), and System.Text.RegularExpressions.Regex.UseOptionR().