InternalRemoveAt method

void InternalRemoveAt(
  1. int index
)
Remote entry at index. The index.

Implementation

void InternalRemoveAt(int index) {
  EwsUtilities.Assert(index >= 0 && index < this.Count,
      "ComplexPropertyCollection.InternalRemoveAt", "index is out of range.");

  this.InternalRemove(this._items[index]);
}