我正在使用StreamReader
字符串数组从文本文件中读取text[]
。文本文件中的其中一行被读取为"\0"
数组的位置 1 -> 20。我将如何检测这个空字符并忽略这一行。
代码示例:
StreamReader sr = new StreamReader(Convert.ToString(openFileDialog1.FileName));
while (!sr.EndOfStream)
{
string l= sr.ReadLine();
string[] parsedLine = l.Split(new char[] { '=' },StringSplitOptions.RemoveEmptyEntries);
// Not working:
if (parsedLine.Length == 0)
{
MessageBox.Show("Ignoring line");
}
任何帮助都会很棒!