RocketLeagueReplayParser.BitWriter.GetBits C# (CSharp) Метод

GetBits() публичный Метод

public GetBits ( int startPosition, int count ) : List
startPosition int
count int
Результат List
        public List<bool> GetBits(int startPosition, int count)
        {
            var r = new List<bool>();
            for(int i = 0; i < count; ++i)
            {
                r.Add(_bits[startPosition + i]);
            }

            return r;
        }