In my class I have the following: ```cs private Action<bool>? _myAction; ``` Is there a way of calling it if it isn't null in a single line? Something like (and this doesn't work): ```cs _myAction?(true); ``` Similarly with a Func, can I do something like: ```cs private Func<bool, bool>? _myFunc; bool result = _myFunc?(true) ?? false; ```