And two UInt64 values : Long « Data Types « VB.Net






And two UInt64 values

   

Module Example
   Public Sub Main()
        Dim sourceNumber As Long = Long.MinValue
        Dim value As String = Convert.ToString(sourceNumber, 16)

        Dim targetNumber As UInt64
        targetNumber = Convert.ToUInt64(value, 16)

        Console.WriteLine((targetNumber And &H8000000000000000ul) <> 0)
   End Sub
End Module

   
    
    
  








Related examples in the same category

1.Long and Single NumberLong and Single Number
2.Append long data type values to a StringBuilder object.
3.Get Long MinValue
4.Is Long value signed
5.Convert long value to string 16 based
6.Convert string value to UInt64
7.Use the Sign(Long) method to determine the sign of a Long value and display it to the console.
8.Use CInt to convert long to Integer