0
在FCL類(甚至使用外部API)中是否有可以插入到.NET應用程序中的實用程序集,類或成員將所有命名實體轉換爲它們的數字對等?例如,É
將變成É
。FCL實用程序將XML命名實體轉換爲數字等效項?
在FCL類(甚至使用外部API)中是否有可以插入到.NET應用程序中的實用程序集,類或成員將所有命名實體轉換爲它們的數字對等?例如,É
將變成É
。FCL實用程序將XML命名實體轉換爲數字等效項?
你可以看看的HtmlDecode和HtmlEncode方法:
class Program
{
static void Main()
{
var s = HttpUtility.HtmlDecode("É");
s = HttpUtility.HtmlEncode(s);
Console.WriteLine(s); // prints É
}
}
就像一個魅力。謝謝。 – 2010-11-16 07:23:59