Essgee.Unity/Assets/Plugins/Essgee/Extensions/FormExtensionMethods.cs

12 lines
286 B
C#
Raw Normal View History

2025-01-02 17:55:16 +08:00
//namespace Essgee.Extensions
//{
// public static class FormExtensionMethods
// {
// public static void CheckInvokeMethod(this Form form, MethodInvoker methodInvoker)
// {
// if (form.InvokeRequired) form.BeginInvoke(methodInvoker);
// else methodInvoker();
// }
// }
//}