private void button1_Click(object sender, EventArgs e)
{
string fileLoc = @"c:\wms.txt";
if (File.Exists(fileLoc))
{
using (TextReader tr = new StreamReader(fileLoc))
{
MessageBox.Show(tr.ReadLine());
}
}
}
這在我創建Windows應用程序時非常有用。閱讀文本文件C#
當我在一個設備應用程序中使用相同的代碼 - Windows CE的我得到錯誤:
使用:NET 2.0,Visual Studio 2005中
異常文本可以是任何更清楚了嗎? –
@JonathonReinhart對不起,我不知道你明白你想說什麼嗎? –
看起來像你有一個額外的斜線在那裏。 – gwin003