Sample.IndexedViewController.GetSectionTitles C# (CSharp) Method

GetSectionTitles() private method

private GetSectionTitles ( ) : string[]
return string[]
		string [] GetSectionTitles ()
		{
			return (from section in Root select section.Caption.Substring(0,1)).ToArray ();
		}
		

Usage Example

コード例 #1
0
            public override string[] SectionIndexTitles(UITableView tableView)
            {
                var j = parent.GetSectionTitles();

                return(j);
            }