在C#中進行URL解碼操作可以使用System.Web.HttpUtility類的UrlDecode方法。示例如下:
using System;
using System.Web;
class Program
{
static void Main()
{
string url = "https://www.example.com/search?q=%E6%90%9C%E7%B4%A2";
string decodedUrl = HttpUtility.UrlDecode(url);
Console.WriteLine(decodedUrl);
}
}
在上面的示例中,我們首先創建一個URL字符串,然后使用UrlDecode方法對其進行解碼操作,最后輸出解碼后的URL。在這個例子中,輸出結果將是"https://www.example.com/search?q=搜索"。