/// <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));
Exemple #2
0
 /// <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));
 }