C-DEngine 5.105

TheCommonUtils..::..CArray2UTF8String Method (array<Byte>[]()[][], Int32, Int32)

Converts a byte array using UTF8 encoding to a character string.

Namespace:  nsCDEngine.BaseClasses
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public static string CArray2UTF8String(
	byte[] pIn,
	int index,
	int count
)
Public Shared Function CArray2UTF8String ( _
	pIn As Byte(), _
	index As Integer, _
	count As Integer _
) As String
public:
static String^ CArray2UTF8String(
	array<unsigned char^>^ pIn, 
	int^ index, 
	int^ count
)

Parameters

pIn
Type: array<Byte>[]()[][]
Input array of UTF8 characters, stored as byte value.
index
Type: Int32
Index of input array beginning of range of items to include in the conversion.
count
Type: Int32
Count of array items to include in conversion.

Return Value

The converted string.