I18NCommander/I18N Commander/UI WinForms/ExtensionsError.cs

13 lines
330 B
C#
Raw Normal View History

using Processor;
namespace UI_WinForms;
public static class ExtensionsError
{
2022-07-17 13:14:31 +00:00
public static void ProcessError<TResult>(this ProcessorResult<TResult> result)
{
2022-07-17 13:14:31 +00:00
if (result.Successful) return;
MessageBox.Show(result.ErrorMessage, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}