System.Collections.IList IListSource.GetList()
        {
            if (_bindingList == null)
            {
                _bindingList = new CsvBindingList(this);
            }

            return(_bindingList);
        }
Exemple #2
0
 System.Collections.IList IListSource.GetList()
 {
     return(_bindingList ?? (_bindingList = new CsvBindingList(this)));
 }