ConversionToString(Byte) Method

Return a string of byte values.

Definition

Namespace: Html
Assembly: Html (in Html.dll) Version: 25.2822.3845
C#
public static string ToString(
	byte[] source
)

Parameters

source  Byte
Array of bytes to convert to characters.

Return Value

String
String of characters converted directly from bytes.

Remarks

Note: This result might not be readable to the human eye. For a Hexadecimal representation of the values of a byte array, use the ToHex() method.

See Also