C2Hex Function | |
Convert a string value to a hexadecimal string.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION C2Hex(
cSource AS STRING
) AS STRING
public static string C2Hex(
string cSource
)
Request Example
View SourceParameters
- cSource
- Type: String
String to convert
Return Value
Type:
StringA string with the hex representation of the value
Examples
? C2Hex("abcdef") // 616263646566
See Also