This topic has not yet been rated - Rate this topic

UIntPtr.Add Method

Adds an offset to the value of an unsigned pointer.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
static member Add : 
        pointer:UIntPtr * 
        offset:int -> UIntPtr

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.UIntPtr
A 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.

No code example is currently available or this language may not be supported.

.NET Framework

Supported in: 4.5, 4

.NET Framework Client Profile

Supported in: 4

Portable Class Library

Supported in: Portable Class Library

.NET for Windows Store apps

Supported in: Windows 8

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.

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