我正在用 Visual c# 构建一个表单应用程序。我的问题是我需要阅读红色下划线的所有列(如图所示)并跳过蓝色的列:
我不知道我应该使用 readline 还是 readblock 方法。此外,程序如何知道红色列何时结束以及如何转到下一个红色列。我必须使用字符数吗?
这是我当前的代码:
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
if (ofd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
StreamReader sr = new StreamReader(File.OpenRead(ofd.FileName));
// constructor sr accesses streamreader class. In stream reader class we access method read to end
textBox1.Text = sr.ReadToEnd();
// fill textbox with this.
sr.Dispose();
}
}
很抱歉,我是初学者-非常感谢您的帮助。