/// <summary> /// /// </summary> /// <param name="buffer"></param> public LDBTables(LDBFile ldb,byte[] buffer) { this.dic = new SafeDictionary<string, LDBTable>(); this.ldb = ldb; this.Init(buffer); }
/// <summary> /// LDBTable /// </summary> /// <param name="position"></param> /// <param name="length"></param> public LDBTable(long position, int length, LDBFile ldb) { this.position = position; this.length = length; this.ldb = ldb; }
/// <summary> /// /// </summary> public LDBTables(LDBFile ldb) { this.dic = new SafeDictionary<string, LDBTable>(); this.ldb = ldb; }