Is there any chance to avoid waiting? What we want for example:
async Task SomeTask()  
{  
   await ChildTask();
   //Then something we want to be done without waiting till "Child Task" finished  
   OtherWork();  
}  
async Task ChildTask()  
{  
   //some hard work   
}  
 
     
    