Imports System

Public Class Test
	Public Shared Sub Main()
		Dim arr as Byte() = New Byte(16) {1, 2, 3, 4, 5, 6, 7, 8}
                For Each b As Byte in arr
                    Console.Write("{0} ", CInt(b))
                Next
	End Sub
End Class