Listing A Private Sub ConvertByteArrayToString() Dim btText() As Byte = {0, 100, 200, 255, 5} Dim strText As String strText = BitConverter.ToString(btText) MessageBox.Show(strText) End Sub