Clear method

void Clear()
Clears the list.

Implementation

void Clear() {
  this._items.clear();
  this.Changed();
}