L
Laura Stern
Guest
Looked at the Infragistics code in the Items collection Clear() method. It is basically this. The first line in the loop would be the thing calling get_item(). This looks OK to me. int count = this.Count; for ( int i = count - 1; i >= 0; i-- ) { UltraListViewItem item = this; this.RemoveHelper(i, false); if ( dispose ) item.Dispose(); }
Continue reading...
Continue reading...