 | Int128ExtensionsHigh64(UInt128) Method |
Gets the high 64 bits of a
UInt128 value.
Namespace: Ookii.JumboAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static ulong High64(
this UInt128 self
)
<ExtensionAttribute>
Public Shared Function High64 (
self As UInt128
) As ULong
public:
[ExtensionAttribute]
static unsigned long long High64(
UInt128 self
)
[<ExtensionAttribute>]
static member High64 :
self : UInt128 -> uint64
Parameters
- self UInt128
- The UInt128 value.
Return Value
UInt64The high 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