本文整理汇总了C#中IReader.ReadLines方法的典型用法代码示例。如果您正苦于以下问题:C# IReader.ReadLines方法的具体用法?C# IReader.ReadLines怎么用?C# IReader.ReadLines使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IReader
的用法示例。
在下文中一共展示了IReader.ReadLines方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Parse
public IModel Parse(IReader reader)
{
int numLines;
if (lineMatcher.Matches(reader, 0, out numLines))
{
string[] lines = reader.ReadLines(numLines);
int lineNo = 0;
List<string> data = new List<string>();
List<string> comment = new List<string>();
foreach (string line in lines)
{
string dataLine = dataParser.Parse(lineNo, line);
if (!string.IsNullOrEmpty(dataLine))
{
data.Add(dataLine);
}
string commentLine = commentParser.Parse(lineNo, line);
if (!string.IsNullOrEmpty(commentLine))
{
comment.Add(commentLine);
}
lineNo++;
}
IModel model = modelFactory(name, string.Join(" ", data), string.Join("\n", comment));
if (impliedModelParsers != null)
{
return impliedModelParsers.Aggregate(model, (current, impliedParser) => impliedParser.Matches(current) ? impliedParser.Parse(current) : current);
}
return model;
}
return null;
}
示例2: Parse
public IModel Parse(IReader reader)
{
int linesRead;
if (MatchLines(reader, out linesRead))
{
string[] lines = reader.ReadLines(linesRead);
return CreateModel(lines);
}
return null;
}