编程学习网为您整理以下代码实例,主要实现:C# I/O文本文件,希望可以帮到各位朋友。
using System;
using System.IO;
namespace fileApplication {
class Program {
static voID Main(string[] args) {
string[] names = new string[] {"Zara Lee", "Nuha Wong"};
using (StreamWriter sw = new StreamWriter("names.txt")) {
foreach (string s in names) {
sw.Writeline(s);
}
}
// Read and show each line from the file.
string line = "";
using (StreamReader sr = new StreamReader("names.txt")) {
while ((line = sr.Readline()) != null) {
Console.Writeline(line);
}
}
Console.ReadKey();
}
}
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!