在C#中,可以使用System.Net.WebUtility.HtmlDecode和System.Net.WebUtility.HtmlEncode方法来处理特殊字符编码。
例如,如果要将包含特殊字符的字符串进行HTML编码,可以使用HtmlEncode方法:
string originalString = "This is a bold statement"; string encodedString = System.Net.WebUtility.HtmlEncode(originalString); Console.WriteLine(encodedString); // Output: "This is a bold statement"
如果要将HTML编码后的字符串进行解码,可以使用HtmlDecode方法:
string encodedString = "This is a bold statement"; string decodedString = System.Net.WebUtility.HtmlDecode(encodedString); Console.WriteLine(decodedString); // Output: "This is a bold statement"
这样就可以在C#中方便地处理特殊字符编码了。