Replaces the objects in the receiving array at specified locations specified with the objects from a given array.
Original signature is '- (void)replaceObjectsAtIndexes:(NSIndexSet *)indexes withObjects:(NSArray *)objects'
Available in Mac OS X v10.4 and later.

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

- indexes (NSIndexSet)
- The indexes of the objects to be replaced.
- objects (NSArray)
- The objects with which to replace the objects in the receiving array at the indexes specified by indexes. The count of locations in indexes must equal the count of objects.

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