InternalRemoveAt method
Implementation
void InternalRemoveAt(int index) {
EwsUtilities.Assert(index >= 0 && index < this.Count,
"ComplexPropertyCollection.InternalRemoveAt", "index is out of range.");
this.InternalRemove(this._items[index]);
}