UtilConsoleWrite(Char, 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,
bool keepCursorPosition = false
)
Public Shared Sub Write (
buffer As Char(),
Optional keepCursorPosition As Boolean = false
)
Dim buffer As Char()
Dim keepCursorPosition As Boolean
UtilConsole.Write(buffer, keepCursorPosition)
public:
static void Write(
array<wchar_t>^ buffer,
bool keepCursorPosition = false
)
static member Write :
buffer : char[] *
?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.
- 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!".ToCharArray(), 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.