我虽然很简单。但我没有设法让这行代码将“\ Game_Progress.xml”添加到我的 String
code_file.Insert(code_file.Length, "\\Game_Progress.xml");
答案 0 :(得分:1)
您可以使用+=
运算符追加字符串:
code_file += "\\Game_Progress.xml";
注意:如果要组合路径,则应考虑使用Path Combine方法:
System.IO.Path.Combine(code_file, "\\Game_Progress.xml")
答案 1 :(得分:-1)
使用反斜杠时,C#可能需要字符串的@prior。尝试:
code_file.Insert(code_file.Length,@“\\ Game_Progress.xml”);