Interface IByteCharConverter
The interface for objects that can translate between characters and bytes.
Namespace: Be.Windows.Forms
Assembly: Be.Windows.Forms.HexBox.dll
Syntax
public interface IByteCharConverter
Methods
View SourceToByte(char)
Returns the byte to use when the character passed across is entered during editing.
Declaration
byte ToByte(char c)
Parameters
| Type | Name | Description |
|---|---|---|
| char | c |
Returns
| Type | Description |
|---|---|
| byte |
ToChar(byte)
Returns the character to display for the byte passed across.
Declaration
char ToChar(byte b)
Parameters
| Type | Name | Description |
|---|---|---|
| byte | b |
Returns
| Type | Description |
|---|---|
| char |