到目前为止,这是我的代码。我遇到的问题是找不到该文件。
命名空间Assignment_Forms_Aplication { 公共部分类Form1:表格 { 公共Form1() { 的InitializeComponent(); }
private void Form1_Load(object sender, EventArgs e)
{
//Define Variable
string[] words = new string[10];
// Read the text from the text file, and insert it into the array
StreamReader SR = new StreamReader(@"Library.txt");
//
for (int i = 0; i < 10; i++)
{
words[i] = SR.ReadLine();
}
// Close the text file, so other applications/processes can use it
SR.Close();
}
}
}
答案 0 :(得分:0)
嗨Gailen使用以下方法:
File.ReadAllLines(@"location");