Mega Code Archive

 
Categories / VB.Net / Data Types
 

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