UIntPtr.Subtraction(UIntPtr, Int32) Operator

Definition

Subtracts an offset from an unsigned integer.

C#
public static UIntPtr operator -(UIntPtr pointer, int offset);

Parameters

pointer
UIntPtr

The unsigned integer to subtract the offset from.

offset
Int32

The offset to subtract.

Returns

UIntPtr

A new unsigned integer that reflects the subtraction of offset from pointer.

Remarks

The Subtraction method defines the subtraction operation for UIntPtr objects. It enables code such as the following.

C#
int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
UIntPtr ptr = (UIntPtr) arr[arr.GetUpperBound(0)];
for (int ctr = 0; ctr <= arr.GetUpperBound(0); ctr++)
{
   UIntPtr newPtr = ptr - ctr;
   Console.Write("{0}   ", newPtr);
}

Languages that do not support custom operators can call the Subtract method instead.

The subtraction operation does not throw an exception if the result is too small to represent as an unsigned integer in the executing process. Instead, it is performed in an unchecked context.

In C# starting from version 11 and when targeting the .NET 7 or later runtime, this API is only accessible via reflection. The subtraction operator is directly recognized by the language and will follow the normal language behavior for subtraction operations, including overflowing in a checked context if the result is too small to represent.

Applies to

Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

See also