我想要实现的是加载一个文本文件,然后计算所有行:
- 以字符“X”开头
- 以字符“Y”结尾
我的代码如下所示:
string txtContent;
try
{
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
txtContent = File.ReadAllText(openFileDialog1.FileName);
}
}
catch (Exception ex) {
MessageBox.Show(ex.Message, "Form1", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
我正在将 txt 文件内容读入txtContent
字符串变量。但我不知道如何继续?