Initialise the console
C#// Default configuration
PowerConsole.Initialise();
// Custom configuration
PowerConsole.Initialise(new ConsoleConfig());
Log a message to the console at the specified severity level
C#PowerConsole.Log(LogLevel.Error, "Hello World");
Clear all messages from the console
C#PowerConsole.Clear();
Register a new command
C#PowerConsole.RegisterCommand(new CustomCommand());
Unregister a command
C#PowerConsole.UnregisterCommand(new CustomCommand());
Determine if a command is registered
C#PowerConsole.CommandExists("my command");