Akrambek
Akrambek

Reputation: 307

Implementation of Task Class in Monotouch

I tried to follow this http://docs.xamarin.com/ios/tutorials/Working_with_Tables_and_Cells/Part_5_-_Using_XCode,_Interface_Builder,_and_Storyboards#Adding_Code

tutorial but I faced problem in adding code stage. The issue is it cannot find Task class. Can anyone help me.

Upvotes: 0

Views: 96

Answers (1)

Alistair
Alistair

Reputation: 1134

Initially I thought the answer would be... Add

using System.Threading.Tasks;

At the top of the file

But. Believe the answer to be that you need to implement a Task class.

public class Task { public string Name {get;set;} Public string Notes {get;set;} public bool Done {get;set;} }

Sorry should ave read the link more closely

Upvotes: 1

Related Questions