BinRead() public method

public BinRead ( List columns, System br ) : void
columns List
br System
return void
Esempio n. 1
0
        // <summary>Retrieve the next row. Uses a seek,
        // assuming the underlying framework will be sensible about it
        // (we should usually already be in position)</summary>
        public Row NextRow()
        {
            _fs.Seek(this.Header.Size + (this._currentRow * this.Header.RowLength), 0);
            Row r = new Row(this);

            r.BinRead(this.Columns, this._br);
            this._currentRow++;
            return(r);
        }
Esempio n. 2
0
 // <summary>Retrieve the next row. Uses a seek,
 // assuming the underlying framework will be sensible about it
 // (we should usually already be in position)</summary>
 public Row NextRow()
 {
     _fs.Seek(this.Header.Size + (this._currentRow * this.Header.RowLength),0);
     Row r = new Row(this);
     r.BinRead(this.Columns, this._br);
     this._currentRow++;
     return r;
 }