BeerDrinkin.iOS.AddBeerTableViewController.AddPhotosCell C# (CSharp) Method

AddPhotosCell() private method

private AddPhotosCell ( ) : void
return void
        void AddPhotosCell()
        {
            var cellIdentifier = new NSString("addBeerPhotosCell");
            var cell = TableView.DequeueReusableCell(cellIdentifier) as AddBeerPhotosCell ??
                new AddBeerPhotosCell(cellIdentifier);
            cells.Add(cell);
        }