BitConverter.ToUInt128 Method

Definition

Overloads

ToUInt128(ReadOnlySpan<Byte>)
ToUInt128(Byte[], Int32)

ToUInt128(ReadOnlySpan<Byte>)

Source:
BitConverter.cs

Important

This API is not CLS-compliant.

public:
 static UInt128 ToUInt128(ReadOnlySpan<System::Byte> value);
[System.CLSCompliant(false)]
public static UInt128 ToUInt128 (ReadOnlySpan<byte> value);
[<System.CLSCompliant(false)>]
static member ToUInt128 : ReadOnlySpan<byte> -> UInt128
Public Shared Function ToUInt128 (value As ReadOnlySpan(Of Byte)) As UInt128

Parameters

Returns

Attributes

Applies to

ToUInt128(Byte[], Int32)

Source:
BitConverter.cs

Important

This API is not CLS-compliant.

public:
 static UInt128 ToUInt128(cli::array <System::Byte> ^ value, int startIndex);
[System.CLSCompliant(false)]
public static UInt128 ToUInt128 (byte[] value, int startIndex);
[<System.CLSCompliant(false)>]
static member ToUInt128 : byte[] * int -> UInt128
Public Shared Function ToUInt128 (value As Byte(), startIndex As Integer) As UInt128

Parameters

value
Byte[]
startIndex
Int32

Returns

Attributes

Applies to