Convert.ToInt32 (Byte) converts 8-bit unsigned integer to 32-bit signed integer.
Module Example Public Sub Main() Dim bytes() As Byte = { Byte.MinValue, 14, 122, Byte.MaxValue} Dim result As Integer For Each byteValue As Byte In bytes result = Convert.ToInt32(byteValue) Console.WriteLine(result) Next End Sub End Module