namespace MarcerGameDvdLauncher; /// /// Centralized service for error and user message output in the console UI. /// public class UIErrorService { public void ShowError(string message) { ProgramHelpers.ShowConsoleMessage([message], ConsoleColor.Red, clear: false, waitForKey: true); } }