示例#1
0
文件: Util.cs 项目: dswisher/nlp
 public static void Advance(this XmlTextReader reader, XmlNodeType nodeType, string name)
 {
     reader.Read();
     reader.Expect(nodeType, name);
 }