Reputation: 11597
I'm relatively new to c# (not to programming in general), and I cant seem to find an answer to this question that is just plain and simple.
are coroutines asynchronous? (y/n/both/abort)
Upvotes: 1
Views: 1736
Reputation: 3133
You should read Eduasync part 13: first look at coroutines with async. Coroutines are not asyncronous by standard, but using the await
and async
(C# 5.0 and .NET 4.5) keyword you can make them to.
Upvotes: 2