natix.CompactDS.InvIndexXLBSeq.Load C# (CSharp) Method

Load() public method

public Load ( BinaryReader Input ) : void
Input System.IO.BinaryReader
return void
        public void Load(BinaryReader Input)
        {
            this.N = Input.ReadInt32 ();
            int vocsize = Input.ReadInt32 ();
            this.InvIndex = new Bitmap[vocsize];
            for (int i = 0; i < vocsize; i++) {
                this.InvIndex [i] = GenericIO<Bitmap>.Load (Input);
            }
            this.Lens = GenericIO<Bitmap>.Load (Input);
            var p = new ListGen_MRRR ();
            p.Load (Input);
            p.SetPERM (this.GetNotIdxPERM ());
            this.Perm = p;
        }