MonoTouch.Dialog.DialogViewController.Source.RowsInSection C# (CSharp) Method

RowsInSection() public method

public RowsInSection ( UITableView tableview, int section ) : int
tableview UITableView
section int
return int
			public override int RowsInSection (UITableView tableview, int section)
			{
				var s = Root.Sections [section];
				if (s.Elements==null)
					return 0;
				var count = s.Elements.Count;
				
				return count;
			}