This topic has not yet been rated - Rate this topic

IntPtr.Add Method

May 02, 2013

Adds an offset to the value of a pointer.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
public static IntPtr Add(
	IntPtr pointer,
	int offset
)

Parameters

pointer
Type: System.IntPtr
The pointer to add the offset to.
offset
Type: System.Int32
The offset to add.

Return Value

Type: System.IntPtr
A new pointer that reflects the addition of offset to pointer.

The Add method does not throw an exception if the result is too large to represent as a pointer on the specified platform. Instead, the addition operation is performed in an unchecked context.

Languages that do not support operator overloading or custom operators can use this method to add an offset to the value of a pointer.

The following example instantiates an IntPtr object that points to the beginning of a ten-element array, and then calls the Add method to iterate the elements in the array.

Windows Phone OS

Supported in: 8.0

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.