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