我如何只读取文本文件中的第一行

时间:2018-12-16 11:47:42

标签: c#

所以我试图只从文本文件中读取第一行并将其显示在标签中,但是我不确定如何精确地对其进行编码。这是我到目前为止所做的

 StreamReader sr = new StreamReader("Test_File.txt");
        string data = sr.ReadLine();
        while (data != null)
        {
            lbl1.Text = data;
            data = sr.ReadLine();
        }

0 个答案:

没有答案