Exemple #1
0
 public NCGR(byte[] data)
 {
     _GHeader = new GenericHeader(data);
     this._RAHC = new RAHC_Class(ByteOp.CopyBytes(data, Constants.GENERIC_HEADER_SIZE));
     if (this._GHeader.NumberOfSections > 1)
         this._SOPC = new SOPC_Class(ByteOp.CopyBytes(data, this._GHeader.SectionSize));
 }
Exemple #2
0
 public NCLR(byte[] data)
 {
     _GHeader = new GenericHeader(data);
     this._TTLP = new TTLP_Class(ByteOp.CopyBytes(data, Constants.GENERIC_HEADER_SIZE));
     if (this._GHeader.NumberOfSections > 1)
         this._PCMP = new PCMP_Class(ByteOp.CopyBytes(data, this._GHeader.SectionSize));
 }
Exemple #3
0
 public NSCR(byte[] data)
 {
     _GHeader = new GenericHeader(data);
     this._NRCS = new NRCS_Class(ByteOp.CopyBytes(data, Constants.GENERIC_HEADER_SIZE));
 }