StringUtilsAsciiToChar Method |
Converts an ASCII code to its corresponding character. For example, 65 is converted to 'A'.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static char AsciiToChar(
int code
)
Public Shared Function AsciiToChar (
code As Integer
) As Char
Parameters
- code
- Type: SystemInt32
The ASCII code to convert.
Return Value
Type:
CharThe ASCII character corresponding to the specified code.
See Also