ChiakiYu.Common.Web.WebHelper.UrlDecode C# (CSharp) Method

UrlDecode() public static method

Url解码
public static UrlDecode ( string urlToDecode ) : string
urlToDecode string 待解码的字符串
return string
        public static string UrlDecode(string urlToDecode)
        {
            if (string.IsNullOrEmpty(urlToDecode))
                return urlToDecode;

            return HttpUtility.UrlDecode(urlToDecode);
        }