Negates an Int128.

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

Syntax

C#
public static Int128 Negate(
	Int128 value
)
Visual Basic
Public Shared Function Negate ( _
	value As Int128 _
) As Int128
Visual C++
public:
static Int128 Negate(
	Int128 value
)

Parameters

value
Type: SharpAssembler.Core..::..Int128
The value to negate.

Return Value

The result of the value parameter multiplied by negative one (-1).

See Also