 | Int128ExtensionsLow64(UInt128) Method |
Gets the low 64 bits of a
UInt128 value.
Namespace: Ookii.JumboAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static ulong Low64(
this UInt128 self
)
<ExtensionAttribute>
Public Shared Function Low64 (
self As UInt128
) As ULong
public:
[ExtensionAttribute]
static unsigned long long Low64(
UInt128 self
)
[<ExtensionAttribute>]
static member Low64 :
self : UInt128 -> uint64
Parameters
- self UInt128
- The UInt128 value.
Return Value
UInt64The low 64 bits.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
UInt128. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also