string contents = File.ReadAllText(path);
label1.Text = contents;
我想读取文本文件的内容,可是显示出来的是乱码?
文件编码不对,在后面的参数中用Encoding设置编码方式。