MonobjcMonobjc Documented Class Library
ReplacePointerAtIndexWithPointer Method (index, item)
NamespacesMonobjc.FoundationNSPointerArrayReplacePointerAtIndexWithPointer(NSUInteger, IntPtr)

Replaces the pointer at a given index.

Original signature is '- (void)replacePointerAtIndex:(NSUInteger)index withPointer:(void *)item'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void ReplacePointerAtIndexWithPointer(
	NSUInteger index,
	IntPtr item
)
Public Overridable Sub ReplacePointerAtIndexWithPointer ( _
	index As NSUInteger, _
	item As IntPtr _
)
public:
virtual void ReplacePointerAtIndexWithPointer(
	NSUInteger index, 
	IntPtr item
)
Parameters
index (NSUInteger)
The index of an element in the receiver. This value must be less than the count of the receiver.
item (IntPtr)
The item with which to replace the element at index. This value may be NULL.
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)