How Do I save variables to a new text file so that those variables are loaded the next time the program runs?(如何将变量保存到新的文本文件中,以便下次程序运行时加载这些变量?)
问题描述
这里有新的 C#er.我正在制作基于控制台的 RPG.它进展顺利,但我需要找出如何保存游戏.我猜想有一种方法可以将我的应用程序中的变量保存到一个文本文件中,该文件可用于在应用程序再次运行时加载变量.不幸的是,我不知道从哪里开始.
new C#er here. I'm making a console based RPG. It's coming along quite well, but I need to find out how to save the game. I would guess that there is a way to save variables from my app into a text file that can be used to load the variables when the application is run again. Unfortunately I have no idea where to start.
我还需要一种方法在加载保存文件时转到代码中的某个点.
Also I need a way to go to a point in the code when loading a save file.
我的一些变量包括:
int xCoordinate, yCoordinate, hp, hpmax, level;
任何示例代码将不胜感激.
Any sample code would be greatly appreciated.
推荐答案
将一些变量写入文本文件很简单:
It is simple to write some variables to a text file:
TextWriter tw = new StreamWriter("SavedGame.txt");
// write lines of text to the file
tw.WriteLine(xCoordinate);
tw.WriteLine(yCoordinate);
// close the stream
tw.Close();
然后将它们读回:
// create reader & open file
TextReader tr = new StreamReader("SavedGame.txt");
// read lines of text
string xCoordString = tr.ReadLine();
string yCoordString = tr.ReadLine();
//Convert the strings to int
xCoordinate = Convert.ToInt32(xCoordString);
yCoordinate = Convert.ToInt32(yCoordString);
// close the stream
tr.Close();
这篇关于如何将变量保存到新的文本文件中,以便下次程序运行时加载这些变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将变量保存到新的文本文件中,以便下次程序运行时加载这些变量?


基础教程推荐
- 全局 ASAX - 获取服务器名称 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01