.net核心

时间:2017-02-05 21:54:32

标签: c# .net-core .net-core-rc2

我有这个基本代码来读取VS代码中带有Dotnet Core的StreamReader文件。我可以在Visual Studio中使用.net new StreamReader("file.json")进行类似的操作,它看起来小巧紧凑。

我正在寻找dotnet核心中的另一个类,它可以用更少的代码实现类似的结果

 using System;
 using System.IO;

namespace ConsoleApplication
{
    public class Program
    {
        public static void Main(string[] args)
        {
            StreamReader myReader = new StreamReader(new FileStream("project.json", FileMode.Open, FileAccess.Read)); 
            string line = " "; 

            while(line != null)
            {
                line = myReader.ReadLine(); 
                if(line != null)
                {
                    Console.WriteLine(line); 
                }
            }

            myReader.Dispose();
        }
    }
}

2 个答案:

答案 0 :(得分:7)

在完整框架中,close方法对Dispose来说是多余的。 关闭流的推荐方法是通过using语句调用Dispose,以确保即使发生错误也会关闭流。

您可以使用System.IO.File.OpenText()直接创建StreamReader。

在这里,您需要打开和关闭StreamReader:

using (var myReader = File.OpenText("project.json"))
{
    // do some stuff
}

File类位于System.IO.FileSystem nuget包

答案 1 :(得分:3)

使用较少代码的类似结果?删除你不必要的代码......这不起作用???

try {
  using (StreamReader myReader = File.OpenText("project.json")) {
    string line = "";
    while ((line = myReader.ReadLine()) != null) {
      Console.WriteLine(line);
    }
  }
}
catch (Exception e) {
  MessageBox.Show("FileRead Error: " + e.Message);
}