I have converted an object into string in wp8,by using
string str=JSONConvert.SerializeObject(object);
{\"catGroup\":[{\"category\":{\"cgsId\":9,\"cgsName\":\"Ignition & Engine Filters\",\"values\":null}..
I want to remove the backslash from the string.I have used str = str.Replace(@"\","");
str = str.Replace(@"\","");
But still I am getting the string containing backslashes. How to remove this?