| UInt128 Constructor |
Initializes a new instance of the
UInt128 struct with the specified high and low bits.
Namespace:
Ookii.Jumbo.Jet.Samples.IO
Assembly:
Ookii.Jumbo.Jet.Samples (in Ookii.Jumbo.Jet.Samples.dll) Version: 2.0.0
Syntax public UInt128(
ulong high64,
ulong low64
)
Public Sub New (
high64 As ULong,
low64 As ULong
)
public:
UInt128(
unsigned long long high64,
unsigned long long low64
)
new :
high64 : uint64 *
low64 : uint64 -> UInt128
Parameters
- high64
- Type: SystemUInt64
The high 64 bits of the value. - low64
- Type: SystemUInt64
The low 64 bits of the value.
See Also