I have a class that has the following property:
public Action<bool> Action { get; private set; }
And I have a constructor that takes Action<bool> as an argument.
Now I want to add another constructor that accepts an object of type Action. How can I convert Action to Action<bool>? The bool-parameter should be true in this case.