使用 dotnet-cli (dotnet new, dotnet restore) 和 VScode,我制作了一个新的 C# 程序。
但是,我似乎无法正确使用 StreamReader。这是代码。
using System;
using System.IO;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
StreamReader test = new StreamReader("Test.txt");
}
}
}
我似乎无法运行这个程序。当我使用 dotnet run 运行时,它说
'string' 无法转换为 'System.IO.Stream' [netcoreapp1.0]
我尝试在 Visual Studio Community 中创建相同的程序,它运行良好,没有任何错误