UInt128.Implicit Operator

Definition

Overloads

Implicit(Byte to UInt128)

Implicitly converts a Byte value to a 128-bit unsigned integer.

Implicit(Char to UInt128)

Implicitly converts a Char value to a 128-bit unsigned integer.

Implicit(UInt16 to UInt128)

Implicitly converts a UInt16 value to a 128-bit unsigned integer.

Implicit(UInt32 to UInt128)

Implicitly converts a UInt32 value to a 128-bit unsigned integer.

Implicit(UInt64 to UInt128)

Implicitly converts a UInt64 value to a 128-bit unsigned integer.

Implicit(UIntPtr to UInt128)

Implicitly converts a UIntPtr value to a 128-bit unsigned integer.

Implicit(Byte to UInt128)

Source:
UInt128.cs
Source:
UInt128.cs
Source:
UInt128.cs

Implicitly converts a Byte value to a 128-bit unsigned integer.

public:
 static operator UInt128(System::Byte value);
public static implicit operator UInt128 (byte value);
static member op_Implicit : byte -> UInt128
Public Shared Widening Operator CType (value As Byte) As UInt128

Parameters

value
Byte

The value to convert.

Returns

value converted to a 128-bit unsigned integer.

Applies to

Implicit(Char to UInt128)

Source:
UInt128.cs
Source:
UInt128.cs
Source:
UInt128.cs

Implicitly converts a Char value to a 128-bit unsigned integer.

public:
 static operator UInt128(char value);
public static implicit operator UInt128 (char value);
static member op_Implicit : char -> UInt128
Public Shared Widening Operator CType (value As Char) As UInt128

Parameters

value
Char

The value to convert.

Returns

value converted to a 128-bit unsigned integer.

Applies to

Implicit(UInt16 to UInt128)

Source:
UInt128.cs
Source:
UInt128.cs
Source:
UInt128.cs

Important

This API is not CLS-compliant.

Implicitly converts a UInt16 value to a 128-bit unsigned integer.

public:
 static operator UInt128(System::UInt16 value);
[System.CLSCompliant(false)]
public static implicit operator UInt128 (ushort value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint16 -> UInt128
Public Shared Widening Operator CType (value As UShort) As UInt128

Parameters

value
UInt16

The value to convert.

Returns

value converted to a 128-bit unsigned integer.

Attributes

Applies to

Implicit(UInt32 to UInt128)

Source:
UInt128.cs
Source:
UInt128.cs
Source:
UInt128.cs

Important

This API is not CLS-compliant.

Implicitly converts a UInt32 value to a 128-bit unsigned integer.

public:
 static operator UInt128(System::UInt32 value);
[System.CLSCompliant(false)]
public static implicit operator UInt128 (uint value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint32 -> UInt128
Public Shared Widening Operator CType (value As UInteger) As UInt128

Parameters

value
UInt32

The value to convert.

Returns

value converted to a 128-bit unsigned integer.

Attributes

Applies to

Implicit(UInt64 to UInt128)

Source:
UInt128.cs
Source:
UInt128.cs
Source:
UInt128.cs

Important

This API is not CLS-compliant.

Implicitly converts a UInt64 value to a 128-bit unsigned integer.

public:
 static operator UInt128(System::UInt64 value);
[System.CLSCompliant(false)]
public static implicit operator UInt128 (ulong value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint64 -> UInt128
Public Shared Widening Operator CType (value As ULong) As UInt128

Parameters

value
UInt64

The value to convert.

Returns

value converted to a 128-bit unsigned integer.

Attributes

Applies to

Implicit(UIntPtr to UInt128)

Source:
UInt128.cs
Source:
UInt128.cs
Source:
UInt128.cs

Important

This API is not CLS-compliant.

Implicitly converts a UIntPtr value to a 128-bit unsigned integer.

public:
 static operator UInt128(UIntPtr value);
[System.CLSCompliant(false)]
public static implicit operator UInt128 (UIntPtr value);
[<System.CLSCompliant(false)>]
static member op_Implicit : unativeint -> UInt128
Public Shared Widening Operator CType (value As UIntPtr) As UInt128

Parameters

value
UIntPtr

unativeint

The value to convert.

Returns

value converted to a 128-bit unsigned integer.

Attributes

Applies to