natix.CompactDS.SArray.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.ReadInt32 ();
            this.H = GenericIO<Bitmap>.Load (Input);
            var list = new ListIFS ();
            list.Load (Input);
            this.L = list;
        }