Gets a number that indicates the sign (negative, positive, or zero) of the current Int128.

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

Syntax

C#
public int Sign { get; }
Visual Basic
Public ReadOnly Property Sign As Integer
	Get
Visual C++
public:
property int Sign {
	int get ();
}

Field Value

A number that indicates the sign. The return value is 0 when the value is zero, 1 when the value is positive or -1 when the value is negative.

See Also