This documentation is archived and is not being maintained.
IntPtr::Add Method
Visual Studio 2010
Adds an offset to the value of a pointer.
Assembly: mscorlib (in mscorlib.dll)
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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: