将文件添加到我的应用程序以跟踪帐户详细信息

时间:2015-09-24 14:27:24

标签: c#

如何将文件添加到银行应用程序?

2 个答案:

答案 0 :(得分:0)

一个简单的谷歌搜索应该让你的方式。使用以下搜索查询:C#读取和写入文本文件将为您提供以下结果:

How to read from and write to a text file by using Visual C# How to both read and write a file in C# - Stack Overflow c# - Easiest way to read from and write to files - Stack Overflow C# Using StreamWriter - Dot Net Perls

这应该让你开始。只是附注,除非分配需要使用泛型,否则对于你想要做的事情可能有点过分。

答案 1 :(得分:0)

Cba会查看您的代码,但如果您使用“使用System.IO”;在顶部,以下位将起作用。

private void Save(string file, string text)
{
    File.WriteAllText(file,text);
}

这将获取文件的路径(例如,“。txt”文件)。并保存给定文本。我想,对于每个帐户,您可以连接所有类似的信息。

Person person; //example of an instance of "Person" class.
string text = person.PersonName+" : "+person.Gender;//etc
string filename = "C:/examplefilename.txt";
Save(filename, text);

显然你会根据自己的需要调整“text”的值。