operator [] method

Item? operator [](
  1. int index
)
Gets the the index

Implementation

serviceObjects.Item? operator [](int index) {
  return this.itemIds[index].GetItem();
}