ArcGISRuntimeXamarin.Samples.DisplayLayerViewState.LayerViewStatusTableSource.RowsInSection C# (CSharp) Метод

RowsInSection() публичный Метод

Called by the TableView to determine how many cells to create for that particular section.
public RowsInSection ( UITableView tableview, nint section ) : nint
tableview UITableView
section nint
Результат nint
        public override nint RowsInSection(UITableView tableview, nint section)
        {
            return _layers != null?_layers.Count:0;
        }