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