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

◆ Escape()

static string System.Text.RegularExpressions.Regex.Escape ( string str)
inlinestatic

Definition at line 217 of file Regex.cs.

218 {
219 if (str == null)
220 {
221 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.str);
222 }
223 return RegexParser.Escape(str);
224 }

References System.Text.RegularExpressions.RegexParser.Escape(), System.Text.RegularExpressions.str, and System.Text.RegularExpressions.ThrowHelper.ThrowArgumentNullException().