所以我试图只从文本文件中读取第一行并将其显示在标签中,但是我不确定如何精确地对其进行编码。这是我到目前为止所做的
StreamReader sr = new StreamReader("Test_File.txt");
string data = sr.ReadLine();
while (data != null)
{
lbl1.Text = data;
data = sr.ReadLine();
}