そのため、openfiledialog を使用してファイルに移動するときに、テキスト ファイルを開こうとしています。これが私のコードです:
string path;
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
System.IO.StreamReader sr = new
System.IO.StreamReader(openFileDialog1.FileName);
path = sr.ReadToEnd();
sr.Close();
}
開かない、ここに私が得るエラーがあります: i.imgur.com/0eVWFAJ.png