C# I/O文本文件

using System;using System.IO;namespace FileApplication {class Program {static void Main(string[] args) {

编程学习网为您整理以下代码实例,主要实现: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();
      }
   }
}

本文标题为:C# I/O文本文件

下一篇: C#文件I/O

基础教程推荐