Mega Code Archive
Byte ToString converts Byte to string representation
Imports System
Class Sample
Public Shared Sub Main()
Dim bytes() As Byte = {0, 1, 14, 168, 255}
For Each byteValue As Byte In Bytes
Console.WriteLine(byteValue.ToString())
Next
End Sub
End Class