Blaze.Server.TdfDecoder.DecodeTdfIntegerList C# (CSharp) Method

DecodeTdfIntegerList() private method

private DecodeTdfIntegerList ( string label ) : TdfIntegerList
label string
return TdfIntegerList
        private TdfIntegerList DecodeTdfIntegerList(string label)
        {
            var list = new TdfIntegerList(label, new List<ulong> { });

            int listSize = _stream.ReadByte();

            for (int i = 0; i < listSize; i++)
            {
                list.list.Add(DecodeInteger());
            }

            return list;
        }