LINQPad 4 不了解 HttpUtililty - 如何解决?
我最近开始使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要引用System.Web.dll。按 F4(引用)并添加对该 DLL 的引用。
或者,如果您有自动完成许可证,只需键入原始查询:
并打开自动显示的智能标签。它将提供一个菜单选项,用于添加对 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:
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!