IntPtr.Add Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Adds an offset to the value of a pointer.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Shared Function Add ( _ pointer As IntPtr, _ offset As Integer _ ) As IntPtr
Parameters
- pointer
- Type: System.IntPtr
The pointer to add the offset to.
- offset
- Type: System.Int32
The offset to add.
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.