aync not preserved when converting a c# async method to vb
static async Task<Uri> CreateProductAsync(Product product)
Current conversion to VB:
Private Shared Function CreateProductAsync(product As Product) As Task(Of Uri)
Correct conversion to VB:
Private Shared Async Function CreateProductAsync(product As Product) As Task(Of Uri)
Comments (0)
Post Comment