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

Load() public method

public Load ( BinaryReader Input ) : void
Input System.IO.BinaryReader
return void
        public void Load(BinaryReader Input)
        {
            this.sigma = Input.ReadInt32 ();
            this.xl_bitmap = GenericIO<Bitmap64>.Load (Input);
            var p = new ListGen_MRRR ();
            p.Load (Input);
            p.SetPERM (this.GetNotIdxPERM ());
            this.perm = p;
        }