12 lines
286 B
C#
12 lines
286 B
C#
|
//namespace Essgee.Extensions
|
|||
|
//{
|
|||
|
// public static class FormExtensionMethods
|
|||
|
// {
|
|||
|
// public static void CheckInvokeMethod(this Form form, MethodInvoker methodInvoker)
|
|||
|
// {
|
|||
|
// if (form.InvokeRequired) form.BeginInvoke(methodInvoker);
|
|||
|
// else methodInvoker();
|
|||
|
// }
|
|||
|
// }
|
|||
|
//}
|