0
public void Method(bool param1, bool param2 = false)
{

}

How to represent the above method as action variable?

Action<bool,bool> Action_Method;
Sankarann
  • 2,625
  • 4
  • 22
  • 59
  • 1
    [Parameter Action in which T3 can be optional](https://stackoverflow.com/questions/7690482/parameter-actiont1-t2-t3-in-which-t3-can-be-optional) – John Woo Jan 22 '18 at 07:24
  • @JohnWoo: Here i want to call Action_Method(true); - How can i do this? – Sankarann Jan 22 '18 at 07:38

0 Answers0