UtilConsoleWrite(String, Boolean) Method
Writes the specified string value 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(
string text,
bool keepCursorPosition = false
)
Public Shared Sub Write (
text As String,
Optional keepCursorPosition As Boolean = false
)
Dim text As String
Dim keepCursorPosition As Boolean
UtilConsole.Write(text, keepCursorPosition)
public:
static void Write(
String^ text,
bool keepCursorPosition = false
)
static member Write :
text : string *
?keepCursorPosition : bool
(* Defaults:
let _keepCursorPosition = defaultArg keepCursorPosition false
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- text String
-
The text 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.