예제 #1
0
        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);
        }
예제 #2
0
 protected virtual string OnGetItemText(ICustomCollectionElement _item, IList _currentList)
 {
     return(_item.ToString());
 }