MonobjcMonobjc Documented Class Library
ReplaceObjectsAtIndexesWithObjects Method (indexes, objects)
NamespacesMonobjc.FoundationNSMutableArrayReplaceObjectsAtIndexesWithObjects(NSIndexSet, NSArray)

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.

Declaration Syntax
C#Visual BasicVisual 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
)
Parameters
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.
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)