| Summary: | mono can't find System.Web.HttpUtility | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | David Grant <davidgrant> |
| Component: | New packages | Assignee: | Gentoo Linux bug wranglers <bug-wranglers> |
| Status: | RESOLVED INVALID | ||
| Severity: | normal | ||
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
Sorry, my fault. It's a problem with monodevelop |
Try compiling the following code: using System; using System.Web; class WebSearch { static void Main(string[] args) { Console.Write("Please enter string to search for: "); string searchString = System.Web.HttpUtility.UrlEncode(Console.ReadLine()); } } I get the following error: The type or namespace name `HttpUtility' could not be found in namespace `System.Web' I'd like to know if everyone gets this error or if it is just me.