Adds the specified item to the collection. The item to add.
| 298 | /// </summary> |
| 299 | /// <param name="item">The item to add.</param> |
| 300 | void Add(const bool item) |
| 301 | { |
| 302 | EnsureCapacity(_count + 1); |
| 303 | ++_count; |
| 304 | Set(_count - 1, item); |
| 305 | } |
| 306 | |
| 307 | /// <summary> |
| 308 | /// Adds the specified item to the collection. |
nothing calls this directly
no test coverage detected