在C#中,可以使用System.Web.HttpUtility.UrlEncode方法來實現urlencode。該方法位于System.Web命名空間中,需要引用System.Web程序集。
以下是使用HttpUtility.UrlEncode方法進行urlencode的示例:
using System;
using System.Web;
class Program
{
static void Main()
{
string url = "https://www.example.com/?q=你好世界";
string encodedUrl = HttpUtility.UrlEncode(url);
Console.WriteLine(encodedUrl);
}
}
輸出結果為:https%3a%2f%2fwww.example.com%2f%3fq%3d%e4%bd%a0%e5%a5%bd%e4%b8%96%e7%95%8c
HttpUtility.UrlEncode方法會將字符串中的特殊字符進行編碼,使其可以作為URL的一部分。