Convert: ``` Func<bool> func = DoSomething(); func(); ``` to ``` Func<Task<bool>> func = DoSomethingAsync(); await func(); ```