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
HttpUtility.UrlDecode should do the trick.