I have little mess up things with tasks. So please explain me which is the main difference between a Task with signature vs no-signature. Example
async Task myTaskAsync();
vs
async Task myTask();
Is there any difference if i will not include Async in my end of fuction?