RemoveAt method

void RemoveAt(
  1. int index
)
Removes the element at the specified index from the collection. The index.

Implementation

void RemoveAt(int index) {
  this._propDefSortOrderPairList.removeAt(index);
}