Skip to content

Debugger Class

The SadConsole debugger class.

C#
public static class Debugger

Inheritance object

True when the debugger is currently opened.

C#
public static bool IsOpened { get; }

Starts the debugger.

C#
public static void Start()

Stops the debugger.

C#
public static void Stop()

An event that’s raised when the debugger is opened. True is passed if it’s the first time it’s opened.

C#
public static event Action<bool> Opened

Action<bool>

An event that’s raised when the debugger is closed.

C#
public static event Action Closed

Action