LINQPad 4 不了解 HttpUtililty - 如何解决?

发布于 2024-10-17 15:34:43 字数 518 浏览 3 评论 0原文

我最近开始使用 LINQPad 来测试零碎内容,它可以节省大量时间。

然而,有时它会给我带来一些小错误。

当我想测试这个时:

HttpUtility.UrlPathEncode("Make sure");

我收到此错误:名称“HttpUtility”在当前上下文中不存在

有没有办法让它识别像 HttpUtility 这样的基本东西?


I just tried writing:

System.Web.HttpUtility.UrlPathEncode("Make sure")

我看到这个:命名空间“System.Web”中不存在类型或命名空间名称“HttpUtility”

I recently started using LINQPad to test bits and pieces and its a great time saver.

However, sometimes it gives me some errors with minor things.

when I want to test this:

HttpUtility.UrlPathEncode("Make sure");

I get this error: The name 'HttpUtility' does not exist in the current context.

Is there a way to get it to recognize basic stuff like HttpUtility?


I just tried writing:

System.Web.HttpUtility.UrlPathEncode("Make sure")

and I am shown this: The type or namespace name 'HttpUtility' does not exist in the namespace 'System.Web'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情泪▽动烟 2024-10-24 15:34:43

您需要引用System.Web.dll。按 F4(引用)并添加对该 DLL 的引用。

或者,如果您有自动完成许可证,只需键入原始查询:

HttpUtility.UrlPathEncode("Make sure");

并打开自动显示的智能标签。它将提供一个菜单选项,用于添加对 System.Web.dll 的引用并一键导入 System.Web 命名空间!

You need to a reference System.Web.dll. Press F4 (References) and add a reference to that DLL.

Or, if you have an autocompletion license, just type your original query:

HttpUtility.UrlPathEncode("Make sure");

and open the smart-tag that automatically appears. It will present a menu option to add the reference to System.Web.dll and import the System.Web namespace in a one-fell-click!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文