StoryboardTable.MasterViewController.MasterViewController C# (CSharp) Method

MasterViewController() public method

public MasterViewController ( IntPtr handle ) : System
handle System.IntPtr
return System
		public MasterViewController (IntPtr handle) : base (handle)
		{
			Title = "ChoreBoard";

			// Custom initialization
			chores = new List<Chore> {
			new Chore() {Name="Groceries", Notes="Buy bread, cheese, apples", Done=false},
			new Chore() {Name="Devices", Notes="Buy Nexus, Galaxy, Droid", Done=false}
		};

		}