Where are Async.BuildPrimitive and Async.Spawn listed?

Working with the help of an F # expert, and he uses some examples that use Async.BuildPrimitive and Async.Spawn, but they are undefined. I am using .NET 4.0.

+3
source share
1 answer

The library API has been changed since the first release of Expert F #

Async.BuildPrimitive → Async.FromBeginEnd

Async.Spawn → Async.Start

+5
source

Source: https://habr.com/ru/post/1773199/


All Articles