把"\"转换成"/"

 string s = "sss\\sss\\";

 string ss =  s.Replace("\\", @"/");

原文地址:https://www.cnblogs.com/liuhaitao/p/1258050.html