Feedback
Correct Array.Insert documentation to cover indices up to Count
- Status
- Fixed
- Fixed in
- v26.8.6
- Source discussion
- https://forum.objo.dev/d/976-documentation-gap-arrayinsert
- Last updated
- 2026-08-29
Upvotes
0 upvotes
Uses your Objo forum account.
Public summary
The Array reference documentation for Array.Insert(index, item) does not state the valid index range. Insert accepts any index from 0 to Count inclusive, and inserting at Count appends the item to the end of the array, so Insert(value, Count) is equivalent to Append(value). The documentation should state the valid range and this append behaviour, and the IDE method description should mention it.