Returns a value that indicates whether two Int128 objects have the same value.

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

Syntax

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

Parameters

left
Type: SharpAssembler.Core..::..Int128
The first value to compare.
right
Type: SharpAssembler.Core..::..Int128
The second value to compare.

Return Value

trueTruetruetrue (True in Visual Basic) if the left and right parameters have the same value; otherwise, falseFalsefalsefalse (False in Visual Basic).

See Also