operator [] method

TResponse operator [](
  1. int index
)
Gets the response at the specified index. Index.

Implementation

TResponse operator [](int index) {
  return this._responses![index];
}