Implicit conversion from unsigned 64bit to 128bit integer.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static implicit operator Int128 (
	ulong u
)
Visual Basic
Public Shared Widening Operator CType ( 
	u As ULong
) As Int128
Visual C++
static implicit operator Int128 (
	unsigned long long u
)
F#
F# does not support the declaration of new casting operators.

Parameters

u
Type: System..::..UInt64
Unsigned 64bit integer

Return Value

Type: Int128
128bit integer

See Also