public FasterList(FasterList <T> listCopy) { _buffer = new T[listCopy.Count]; listCopy.CopyTo(_buffer, 0); _count = (uint)listCopy.Count; }