Logger(Char[], Int32, Int32, LogType, Int32)

Logs the specified sub-array of Unicode characters, followed by the current line terminator.

Declaration
public static void Logger(char[] buffer, int index, int count, LogType logType, int logLevel)
Example
engine.Logger(new char[] { 'B', 'A', '*', '-' }, 1, 2, LogType.Debug, 0);
Result
Debug|0|ID0|Logger_Char_Sub_Array_Test|A*
Type
Name
Description

buffer

A Unicode character array.

index

The starting position in buffer.

count

The number of characters to write.

logType

Specifies the log type.

logLevel

Specifies the log level.

Last updated