14 lines
286 B
C#
14 lines
286 B
C#
![]() |
using System;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace BizHawk
|
|||
|
{
|
|||
|
public static class Extensions
|
|||
|
{
|
|||
|
//extension method to make Control.Invoke easier to use
|
|||
|
public static void Invoke(this Control control, Action action)
|
|||
|
{
|
|||
|
control.Invoke((Delegate)action);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|