|
|
|
|
|
by masklinn
5390 days ago
|
|
1. No iterator is being used here, so the iterator coherence check does not come into play 2. List elements are removed from the front, the code is essentially a complicated version of: while (0 < this.MyControl.TabPages.Count) {
this.MyControl.TabPages.Remove(0);
}
|
|