In one of MVA videos i saw next construction:
static void Main(string[] args) { Action testAction = async () => { Console.WriteLine(\"In\");
Recently I found that NUnit able to await async voidtests. Here is good description how it works: How does nunit successfully wait for async void methods to complete?
await
async void
You won't use it in regular tasks, but it's good to know that it is possible