Returns the bitwise one's complement of an 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 value
)
Visual Basic
Public Shared Operator ~ ( _
	value As Int128 _
) As Int128
Visual C++
public:
static Int128 operator ~(
	Int128 value
)

Parameters

value
Type: SharpAssembler.Core..::..Int128
An integer value.

Return Value

The bitwise one's complement of value.

See Also