Inserts the objects in in a given array into the receiving array at the specified indexes.
Original signature is '- (void)insertObjects:(NSArray *)objects atIndexes:(NSIndexSet *)indexes'
Available in Mac OS X v10.4 and later.

C# | Visual Basic | Visual C++ |
public virtual void InsertObjectsAtIndexes( NSArray objects, NSIndexSet indexes )
Public Overridable Sub InsertObjectsAtIndexes ( _ objects As NSArray, _ indexes As NSIndexSet _ )
public: virtual void InsertObjectsAtIndexes( NSArray^ objects, NSIndexSet^ indexes )

- objects (NSArray)
- An array of objects to insert into the receiving array.
- indexes (NSIndexSet)
- The indexes at which the objects in objects should be inserted. The count of locations in indexes must equal the count of objects. For more details, see the Discussion.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)