Converts the specfied signed 128-bit value to an unsigned 32-bit value.

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

Syntax

C#
public static explicit operator uint (
	Int128 value
)
Visual Basic
Public Shared Narrowing Operator CType ( _
	value As Int128 _
) As UInteger
Visual C++
static explicit operator unsigned int (
	Int128 value
)

Parameters

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

Return Value

The resulting 32-bit value.

See Also