Exemple #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);
 }
Exemple #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;
 }
Exemple #3
0
 /// <summary>
 /// 
 /// </summary>
 public LDBTables(LDBFile ldb)
 {
     this.dic = new SafeDictionary<string, LDBTable>();
     this.ldb = ldb;
 }