Click or drag to resize

StringConversionGetString Delegate

A delegate for converting an array of bytes into a string.

Namespace: Demo3D.PLC
Assembly: PLC (in PLC.dll) Version: 19.00.00
Syntax
C#
public delegate string GetString(
	byte[] bytes,
	int index,
	int numBytes
)

Parameters

bytes  Byte
The bytes to convert.
index  Int32
The index of the first byte to convert.
numBytes  Int32
The number of bytes to convert.

Return Value

String
The string represenation.
See Also