Remove method

bool Remove(
  1. String s
)
Removes a String from the list. The String to remove.

Implementation

bool Remove(String s) {
  bool result = this._items.remove(s);

  if (result) {
    this.Changed();
  }

  return result;
}