I\'m new to F# and stuck in understanding async in F# from the perspective of a C# developer. Say having the following snippet in C#:
You can use async:
async
let readString (url: Uri) = async { let httpClient = new HttpClient(); let! response = httpClient.GetAsync(url) |> Async.AwaitTask response.EnsureSuccessStatusCode() |> ignore return! response.Content.ReadAsStringAsync() |> Async.AwaitTask }