MonobjcMonobjc Documented Class Library
InsertObjectsAtIndexes Method (objects, indexes)
NamespacesMonobjc.FoundationNSMutableArrayInsertObjectsAtIndexes(NSArray, NSIndexSet)

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.

Declaration Syntax
C#Visual BasicVisual 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
)
Parameters
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.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)