Click or drag to resize

BaseProcessorEncodeBufferToBinhex Method

A helper method for processors that need to encode buffers to binhex strings

Namespace: Orthogonal.NSettings
Assembly: Orthogonal.NSettings (in Orthogonal.NSettings.dll) Version: 3.0.5
Syntax
C#
public static string EncodeBufferToBinhex(
	byte[] buffer
)

Parameters

buffer  Byte
The byte[] to be encoded as a string.

Return Value

String
A string containing pairs of hex digits (0-9 and a-f). Null is returned if the buffer parameter is null.
See Also