System.Yaml.StringUriEncodingExtention.UriUnescape C# (CSharp) 메소드

UriUnescape() 공개 정적인 메소드

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