C#把整个文件内容读入字符串变量的方法


本文实例讲述了C#把整个文件内容读入字符串变量的方法。分享给大家供大家参考。具体实现方法如下:

using System;
namespace PlayingAround {
 class ReadAll {
  public static void Main(string[] args) {
   string contents = System.IO.File.ReadAllText(@"C:\t1");
   Console.Out.WriteLine("contents = " + contents);
  }
 }
}

希望本文所述对大家的C#程序设计有所帮助。


« 
» 
快速导航

Copyright © 2016 phpStudy | 豫ICP备2021030365号-3