What is the correct way to call a static method named DebugString from a static class called InputManager?
static InputManager.DebugString();
InputManager().DebugString;
new InputManager().DebugString();
InputManager.DebugString();