System.Yaml.StringUriEncodingExtention.UriUnescape C# (CSharp) Method

UriUnescape() public static method

Unescape the string escaped in URI encoding format.
public static UriUnescape ( this s ) : string
s this String to be unescape.
return string
        public static string UriUnescape(this string s)
        {
            return UriEncoding.Unescape(s);
        }