|
|
От: | GorSI | |
| Дата: | 12.02.09 14:02 | ||
| Оценка: | |||
public override void RemoveRange(int index, int count)
{
ArrayList l = GetRange(index, count);
if (l == null || l.Count == 0)
return;
RemoveInternal(l);
BindingListImpl.RemoveRange(index, count);
}