Add method

void Add(
  1. String s
)
Adds a String to the list. The String to add.

Implementation

void Add(String s) {
  this._items.add(s);
  this.Changed();
}