Convert.ToUInt16 (SByte) converts 8-bit signed integer to 16-bit unsigned integer.
Class Sample
Public Shared Sub Main()
Dim numbers() As SByte = { SByte.MinValue, -1, 0, 10, SByte.MaxValue }
Dim result As UShort
For Each number As SByte In numbers
Try
result = Convert.ToUInt16(number)
Console.WriteLine("Converted the {0} value '{1}' to the {2} value {3}.", _
number.GetType().Name, number, _
result.GetType().Name, result)
Catch e As OverflowException
Console.WriteLine("OverflowException")
End Try
Next
End Sub
End Class
Related examples in the same category