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

◆ Unescape()

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

Definition at line 226 of file Regex.cs.

227 {
228 if (str == null)
229 {
230 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.str);
231 }
232 return RegexParser.Unescape(str);
233 }

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