小编典典

类库中的 HtmlEncode

all

我有一个类库(在 C# 中)。我需要使用 HtmlEncode 方法对我的数据进行编码。这很容易从 Web
应用程序中完成。我的问题是,如何从控制台应用程序调用的类库中使用此方法?


阅读 73

收藏
2022-08-24

共1个答案

小编典典

导入 System.Web 或调用包含它的 System.Web.HttpUtility

如果还没有 DLL,则需要添加对 DLL 的引用

string TestString = "This is a <Test String>.";
string EncodedString = System.Web.HttpUtility.HtmlEncode(TestString);
2022-08-24