Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| ' Visual Basic .NET Document | |
| Option Strict On | |
| Module Example | |
| Public Sub Main() | |
| ' <Snippet6> | |
| Dim byteValues() As Byte = { 12, 163, 255 } | |
| For Each byteValue As Byte In byteValues | |
| Console.WriteLine(byteValue.ToString("X4")) | |
| Next | |
| ' The example displays the following output: | |
| ' 000C | |
| ' 00A3 | |
| ' 00FF | |
| ' </Snippet6> | |
| End Sub | |
| End Module | |