我知道如何从 XML 文件中读取内容,但我不知道如何向其中写入内容。
例如,我从 XML 文件中读取一个整数变量并对其进行修改。修改后,我想将整数变量保存到同一个 XML 文件中。旧整数值必须替换为新值。我的游戏在 Windows 7 上运行。
我使用以下代码加载 XML 文件:
protected override void LoadContent()
{
scorexml = Content.Load<List<Gamescore>>("Score");
foreach (Gamescore score in scorexml)
{
score.Load(Content);
}
}
public class Gamescore
{
int score;
public int Score
{
get { return score; }
set { score = value; }
}
}