Exemplo n.º 1
0
Arquivo: Regex.cs Projeto: jnm2/corefx
        public static string Unescape(string str)
        {
            if (str == null)
                throw new ArgumentNullException(nameof(str));

            return RegexParser.Unescape(str);
        }
Exemplo n.º 2
0
 public static string Unescape(string str)
 {
     if (str == null)
     {
         throw new ArgumentNullException();
     }
     return(RegexParser.Unescape(str));
 }