operator [] method
Implementation
TComplexProperty operator [](int index) {
if (index < 0 || index >= this.length) {
throw new RangeError.range(
index, 0, this.length, "index", "Strings.IndexIsOutOfRange");
}
return this._items[index];
}