标签: c#
public void Method(bool param1, bool param2 = false) { }
如何将上述方法表示为动作变量?
Action<bool,bool> Action_Method;