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

Decompress() public method

public Decompress ( int firstIndex, int count ) : List
firstIndex int
count int
return List
        public List<long> Decompress(int firstIndex, int count)
        {
            var list = new List<long> ();
            this.Decompress (list, firstIndex, count);
            return list;
        }

Same methods

LongStream::Decompress ( List list, OctetStream ctx, int count ) : void
LongStream::Decompress ( List list, int firstIndex, int count ) : void