I met Tasks using .NET Framework 4.5 (with async and await) and I need to know if they are part of the standard .NET Framework 4.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Taskand related classes are available in .Net 4. Async and await are part of C# 5, and these rely on methods (e.g. GetAwaiter) which are not defined onTaskuntil .Net 4.5. You can use async/await when targeting .Net 4 if you use the Async targeting pack along with a C# 5 compiler.