SectionedUITableViewSample.TableViewDataSource.RowsInSection C# (CSharp) 메소드

RowsInSection() 공개 메소드

public RowsInSection ( MonoTouch tableview, int section ) : int
tableview MonoTouch
section int
리턴 int
        public override int RowsInSection(MonoTouch.UIKit.UITableView tableview, int section)
        {
            return filteredDictionaryItems.FindAll(x => x.StartsWith(filteredSectionList[section])).Count;
        }