This documentation is archived and is not being maintained.
IntPtr::Subtract Method
Visual Studio 2010
Subtracts an offset from the value of a pointer.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- pointer
- Type: System::IntPtr
The pointer to subtract the offset from.
- offset
- Type: System::Int32
The offset to subtract.
The Subtract method does not throw an exception if the result is too small to represent as a pointer on the specified platform. Instead, the subtraction operation is performed in an unchecked context.
Languages that do not support operator overloading or custom operators can use this method to subtract an offset from 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: