Subtracts an Int128 from another Int128 value.

Namespace: SharpAssembler.Core
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static Int128 operator -(
	Int128 left,
	Int128 right
)
Visual Basic
Public Shared Operator - ( _
	left As Int128, _
	right As Int128 _
) As Int128
Visual C++
public:
static Int128 operator -(
	Int128 left, 
	Int128 right
)

Parameters

left
Type: SharpAssembler.Core..::..Int128
The value to subtract from.
right
Type: SharpAssembler.Core..::..Int128
The value to subtract.

Return Value

The result of subtracting right from left.

See Also