Removes the parameter at the specified index in the collection.
Visual Basic
Overloads NotOverridable Public Sub RemoveAt( _
ByVal index As Integer _
) _
Implements IList.RemoveAt
C#
public void RemoveAt(
int index
);
index The zero-based index of the parameter to remove. The value must be in the range [0,ULParameterCollection.Count-1]. The first parameter in the collection has an index value of zero.
System.IndexOutOfRangeException - The index is invalid.