public void Method(bool param1, bool param2 = false)
{
}
How to represent the above method as action variable?
Action<bool,bool> Action_Method;
public void Method(bool param1, bool param2 = false)
{
}
How to represent the above method as action variable?
Action<bool,bool> Action_Method;