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

 更新时间:2015年07月03日 12:41:10   作者:pythoner  
这篇文章主要介绍了C#把整个文件内容读入字符串变量的方法,实例分析了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#程序设计有所帮助。

相关文章

最新评论