我最近开始使用LINQPad来测试点点滴滴,它可以节省大量时间。
但是,有时它会给我一些小问题。
当我想测试这个时:
HttpUtility.UrlPathEncode("Make sure");
我得到这个错误:The name 'HttpUtility' does not exist in the current context
。
有没有办法让它识别像 HttpUtility 这样的基本东西?
我刚试着写:
System.Web.HttpUtility.UrlPathEncode("Make sure")
我看到了这个:The type or namespace name 'HttpUtility' does not exist in the namespace 'System.Web'