Are the any functions in C# that handle escape/unescape like JavaScript?
I have a JSON string like this:
{\"Feeds\":[{\"Url\":\"www.test.com\",\"FeedTy
I spent 8 hours trying to get
HttpUtility.UrlDecode
to work, and gave up and used
HttpUtility.HtmlDecode
which worked instantly.