Converts a string into a string of hex digits where each "byte" of the hex string represents a character in the string converted using the default encoding scheme.

Namespace: Asi.iBO
Assembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0

Syntax

C#
public static string ConvertStringToHex(
	string source
)
Visual Basic
Public Shared Function ConvertStringToHex ( _
	source As String _
) As String
Visual C++
public:
static String^ ConvertStringToHex(
	String^ source
)

Parameters

source
Type: System..::..String
The test string to be converted to hex.

Return Value

A hex string representation of the supplied text.

See Also