VScode で dotnet-cli (dotnet new、dotnet restore) を使用して、新しい 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 を使用して実行すると、次のように表示されます
「文字列」を「System.IO.Stream」に変換できません [netcoreapp1.0]
Visual Studio Community で同じプログラムを作成しようとしましたが、エラーなく正常に動作します