[]
Create a two character hex representation of a byte
public static string toHexString(byte i)
Public Shared Function toHexString(i As Byte) As String
| Type | Name | Description |
|---|---|---|
| byte | i | byte to represent |
| Type | Description |
|---|---|
| string | representation |
Create a 4 character hex representation of a short
public static string toHexString(short i)
Public Shared Function toHexString(i As Short) As String
| Type | Name | Description |
|---|---|---|
| short | i | short to represent |
| Type | Description |
|---|---|
| string | representation |
Create a 8 character hex representation of a int
public static string toHexString(int i)
Public Shared Function toHexString(i As Integer) As String
| Type | Name | Description |
|---|---|---|
| int | i | int to represent |
| Type | Description |
|---|---|
| string | representation |