到目前为止,这是我的代码:
string _nextLine;
string[] _columns;
char[] delimiters;
delimiters = "|".ToCharArray();
using (StreamReader _reader = ...)
{
_nextLine = _reader.ReadLine();
while (_nextLine != null)
{
_columns = _nextLine.Split(delimiters);
JazzORBuffer.AddRow();
JazzORBuffer.Server = _columns[0];
JazzORBuffer.Country = _columns[1];
JazzORBuffer.QuoteNumber = _columns[2];
_nextLine = _reader.ReadLine();
}
}
我的文件的前 5 行如下所示:
在 x 和 y 之间创建的产品 第 1 列标题 | 栏目 2 标题 | 第 3 列标题 | 第 4 栏标题 | 温迪Z| 戴夫 | 约翰 | 史蒂夫 |
最后 3 行如下所示:
温迪Z| 戴夫 | 约翰 | 史蒂夫 | 产品总数| 49545
我需要在我的代码中进行哪些更改,以便忽略文件中的前 3 行和最后一行?