remove redundant control overloads

no longer necessary since c# language version 10
This commit is contained in:
Morilli 2025-04-18 18:34:47 +02:00
parent 3eb77a7567
commit 7adc5619d7
1 changed files with 0 additions and 8 deletions

View File

@ -31,14 +31,6 @@ namespace BizHawk.Client.EmuHawk
box.SelectedItem = enumVal.GetDescription();
}
/// <summary>extension method to make <see cref="Control.Invoke(Delegate)"/> easier to use</summary>
public static void Invoke(this Control control, Action action)
=> control.Invoke(action);
/// <summary>extension method to make <see cref="Control.BeginInvoke(Delegate)"/> easier to use</summary>
public static void BeginInvoke(this Control control, Action action)
=> control.BeginInvoke(action);
public static ToolStripMenuItem ToColumnsMenu(this InputRoll inputRoll, Action changeCallback)
{
var menu = new ToolStripMenuItem