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: 15.0.2.11458
Syntax
C#
public delegate string GetString(
	byte[] bytes,
	int index,
	int numBytes
)

Parameters

bytes
Type: SystemByte
The bytes to convert.
index
Type: SystemInt32
The index of the first byte to convert.
numBytes
Type: SystemInt32
The number of bytes to convert.

Return Value

Type: String
The string represenation.
See Also