Adds an offset to the value of a pointer.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public static IntPtr operator +(
IntPtr pointer,
int offset
)
Parameters
- pointer
- Type: SystemIntPtr
The pointer to add the offset to. - offset
- Type: SystemInt32
The offset to add.
Return Value
Type:
IntPtrA new pointer that reflects the addition of
offset to
pointer.
See Also