Skip to content
Enes Okullu edited this page Feb 16, 2024 · 7 revisions

Welcome to the HelpConsole wiki!

HelpConsole has various features to enhance your experience while you are working with console applications.

ConsoleOption

  • AppName: You can set your application name as string.
  • ScreenColorOption: You can set background screen and foreground text color.
  • CursorVisible: You can set cursor's visibility on screen.
  • WarningSound: You can set warning beep on/off.
  • WaitOnEnd: You can set if you application should wait on end. FinishUp() method should be placed at bottom of your Main() method.

Starting

StartUp(ConsoleOption consoleOption = null);
  • Set default or provided ConsoleOption on Console Application.

Finishing

FinishUp();
  • Write "done..." message into console title and screen, beeps if WarningSound is on and waits for user if WaitOnEnd is on.

Clone this wiki locally