UIntPtr.Add Method
Adds an offset to the value of an unsigned pointer.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- pointer
- Type: System.UIntPtr
The unsigned pointer to add the offset to.
- offset
- Type: System.Int32
The offset to add.
Return Value
Type: System.UIntPtrA new unsigned 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 an unsigned pointer.
The following example instantiates a UIntPtr object that points to the beginning of a ten-element array, and then calls the Add method to iterate the elements in the array.
using System; public class Example { public static void Main() { int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; UIntPtr ptr = (UIntPtr) arr[0]; for (int ctr = 0; ctr < arr.Length; ctr++) { UIntPtr newPtr = UIntPtr.Add(ptr, ctr); Console.Write("{0} ", newPtr); } } } // The example displays the following output: // 1 2 3 4 5 6 7 8 9 10
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.