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.
Namespace: DevCase.Core.Application.ConsoleAssembly: 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
)
public:
static void Write(
array<wchar_t>^ buffer,
int index,
int count,
bool keepCursorPosition = false
)
static member Write :
buffer : char[] *
index : int *
count : int *
?keepCursorPosition : bool
(* Defaults:
let _keepCursorPosition = defaultArg keepCursorPosition false
*)
-> unit
No code example is currently available or this language may not be supported.
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:
This is a code example.
No code example is currently available or this language may not be supported.
Write("Hello World!", keepCursorPosition:=True)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.