Fonix
Fonix

Reputation: 11597

C# are coroutines asynchronous?

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

Answers (1)

Jevgeni Geurtsen
Jevgeni Geurtsen

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

Related Questions