public VPackBuilder(IBuilderOptions options) { this.options = options; size = 0; buffer = new byte[10]; stack = new List <int>(); index = new Dictionary <int, List <int> >(); }
public VPackBuilder(IBuilderOptions options) { this.Options = options; this.size = 0; this.buffer = new byte[10]; this.stack = new List <int>(); this.index = new Dictionary <int, IList <int> >(); }