Inheritance: XmlReader, RecordOutput
        public ReaderOutput StartReader()
        {
            ReaderOutput output = new ReaderOutput(this);

            this.builder = new RecordBuilder(output, this.nameTable);
            return(output);
        }
示例#2
0
 public ReaderOutput StartReader() {
     ReaderOutput output = new ReaderOutput(this);
     this.builder = new RecordBuilder(output, this.nameTable);
     return output;
 }