示例#1
0
 Parser(IO.ICharacterReader reader)
 {
     this.reader = reader;
 }
示例#2
0
 public void Dispose()
 {
     if (this.reader.NotNull())
     {
         this.reader.Dispose();
         this.reader = null;
     }
 }