Ok, this question may be simple. I have the following code:
public async Task Start() { Remux(); if (TransmitEnabled && userLogged) Transmit(); }
private async Task Remux() { } private async Task Transmit() { }
As you see, there is not await keywork, but it should be one, right? I don't want to await Remux() in order to run the condition and Transmit statements, so how can I write this code in order to run the 2 tasks independently?
Take a look at WPF FlashMessage
About.me