07-20-2013, 10:39 AM
Try to use replace instead:
if (items[i].description.Contains("")){
items[i].description = items[i].description.Replace("", @"\");
}
Or you could simply put this(without checking if contains, because if there are none it will put none):
items[i].description = items[i].description.Replace("", @"\");

