private string GetText(ICustomCollectionElement _iCustomCollectionElement) { string _itemText = null; if (this.getItemText != null) { _itemText = getItemText(_iCustomCollectionElement, this.list); } if (string.IsNullOrEmpty(_itemText)) { _itemText = _iCustomCollectionElement.ToString(); } return(_itemText); }
protected virtual string OnGetItemText(ICustomCollectionElement _item, IList _currentList) { return(_item.ToString()); }