/// <summary> Fires the console input event. </summary> /// <param name="content"> The content. </param> private void FireConsoleInputEvent(string content) => OnConsoleInput?.Invoke(this, new Tuple <string>(content));
/// <summary> /// Fires the console input event. /// </summary> /// <param name="content">The content.</param> private void FireConsoleInputEvent(string content) { // Get the event. OnConsoleInput?.Invoke(this, new ConsoleEventArgs(content)); }