MonoTouch.Dialog.DialogViewController.Source.RowsInSection C# (CSharp) Méthode

RowsInSection() public méthode

public RowsInSection ( UITableView tableview, int section ) : int
tableview UITableView
section int
Résultat 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;
			}