Exemplo n.º 1
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="buffer"></param>
 public LDBTables(LDBFile ldb,byte[] buffer)
 {
     this.dic = new SafeDictionary<string, LDBTable>();
     this.ldb = ldb;
     this.Init(buffer);
 }
Exemplo n.º 2
0
 /// <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;
 }
Exemplo n.º 3
0
 /// <summary>
 /// 
 /// </summary>
 public LDBTables(LDBFile ldb)
 {
     this.dic = new SafeDictionary<string, LDBTable>();
     this.ldb = ldb;
 }