Cnv.StringFromHex Method
Convert a hexadecimal-encoded string into a text string.
Syntax
[C#]
public static string StringFromHex(
string s
)
[VB]
Public Shared Function StringFromHex (
s As String
) As String
Parameters
- s String
- Hex-encoded data
Return Value
String value
Remarks
Uses the 'Default' encoding for the system's current ANSI code page,
usually code page 1252 (similar to Latin-1).
This assumes the user knows the resulting characters are all printable.
[Contents] [Index]