private IList <bool> GetBit(int[] positions) { var results = new bool[positions.Length]; for (int i = 0; i < positions.Length; i++) { results[i] = _client.GetBit(_redisKey, (uint)positions[i]); } return(results); }