UtilConsoleWrite(Char, Int32, Int32, Boolean) Method

Writes the specified array of Unicode characters to the standard output stream, wih the ability to keep the current cursor position on the console.

Definition

Namespace: DevCase.Core.Application.Console
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void Write(
	char[] buffer,
	int index,
	int count,
	bool keepCursorPosition = false
)

Parameters

buffer  Char
A Unicode character array.
index  Int32
The starting position in buffer.
count  Int32
The number of characters to write.
keepCursorPosition  Boolean  (Optional)
If , holds the cursor position on its current position after writting the text.

Default value:

Example

This is a code example.
C#
No code example is currently available or this language may not be supported.

See Also