Click or drag to resize
IntPtrAddition Operator
Adds an offset to the value of a pointer.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
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: IntPtr
A new pointer that reflects the addition of offset to pointer.
See Also