我想知道如何讓程序讀取文本文件並將內容放入使用streamreader的列表框中?使用streamreader將文本文件放入列表框
private void button1_Click(object sender, EventArgs e)
{
} (StreamReader stRead = new StreamReader("C:\Users\tommy\Desktop\WindowsFormsApplication9\WindowsFormsApplication9\bin\Debug\transactions.txt"))
{
while (!stRead.EndOfStream)
{
ListBox1.Items.Add(stRead.ReadLine());
}
您已經張貼了這個問題的答案。請先回答您的代碼。 –