MonobjcMonobjc Documented Class Library
RemoveObjectsFromIndicesNumIndices Method (indices, count)
NamespacesMonobjc.FoundationNSMutableArrayRemoveObjectsFromIndicesNumIndices(IntPtr, NSUInteger)

Removes the specified number of objects from the array, beginning at the specified index. (Deprecated in Mac OS X v10.6. Use removeObjectsAtIndexes: instead.)

Original signature is '- (void)removeObjectsFromIndices:(NSUInteger *)indices numIndices:(NSUInteger)count'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
[ObsoleteAttribute("Deprecated in Mac OS X v10.6. Use removeObjectsAtIndexes: instead.")]
public virtual void RemoveObjectsFromIndicesNumIndices(
	IntPtr indices,
	NSUInteger count
)
<ObsoleteAttribute("Deprecated in Mac OS X v10.6. Use removeObjectsAtIndexes: instead.")> _
Public Overridable Sub RemoveObjectsFromIndicesNumIndices ( _
	indices As IntPtr, _
	count As NSUInteger _
)
[ObsoleteAttribute(L"Deprecated in Mac OS X v10.6. Use removeObjectsAtIndexes: instead.")]
public:
virtual void RemoveObjectsFromIndicesNumIndices(
	IntPtr indices, 
	NSUInteger count
)
Parameters
indices (IntPtr)
A C array of the indices of the objects to remove from the receiving array.
count (NSUInteger)
The number of objects to remove from the receiving array.
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)