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

Load() public method

public Load ( BinaryReader input ) : void
input System.IO.BinaryReader
return void
        public override void Load(BinaryReader input)
        {
            this.N = input.ReadInt64 ();
            this.H = GenericIO<Bitmap>.Load (input);
            var list = new ListIFS ();
            list.Load (input);
            this.L = list;
        }