通过以下步骤覆盖 xml 文件时:
- 读取字符串数组中 xml 文件的所有内容: string[] ls_aLineText = System.IO.File.ReadAllLines( ls_PathAndFile );
- 覆盖 ls_aLineText 数组的内容
- 使用以下方法覆盖 xml 文件: System.IO.File.WriteAllLines( ls_PathAndFile, ls_aLineText );
步骤 1 和 2 执行正确,但步骤 3 显示错误“无法加载”xml 文件。请提出解决此问题的方法。
提前致谢
维韦克