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

Load() public method

public Load ( BinaryReader Input ) : void
Input System.IO.BinaryReader
return void
        public void Load(BinaryReader Input)
        {
            this.count = Input.ReadInt32 ();
            var m = Input.ReadInt32 ();
            this.offsets.Clear ();
            PrimitiveIO<int>.LoadVector (Input, m, this.offsets);
            this.ostream.Load (Input);
        }