Cnv.StringFromHex Method
Convert a hexadecimal-encoded string into a text string.
Syntax
[C#]
public static string StringFromHex(
string s
)
[VB.NET]
Public Shared Function StringFromHex ( _
s As String _
) As String
Parameters
- s
- 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]