C#如何去掉字符串中的反斜杠(\)
现有字符串如下:
{"Message":"{ \"rows\":[ { \"JSON_remotefileid\":\"1433\",\"JSON_filename\":\"Book1.2014-10-29.xls\",\"JSON_createuserid\":\"2\",\"JSON_createdate\":\"2014/10/29 12:52:14\",\"JSON_filetype\":\".xls\",\"JSON_filesize\":\"40960\",\"JSON_foldername\":\"201410\"}, { \"JSON_remotefileid\":\"1434\",\"JSON_filename\":\"ed3c7dc1-c047-4e28-b6e4-3f531147e8a3.2014-10-29.xml\",\"JSON_createuserid\":\"2\",\"JSON_createdate\":\"2014/10/29 12:52:19\",\"JSON_filetype\":\".xml\",\"JSON_filesize\":\"44663\",\"JSON_foldername\":\"201410\"} ]}"}
C#代码怎么能去掉字符串中的所有"\"字符?
斜杠是转义字符,没太懂转义字符。
求大咖支招。