Inserts an ULParameter in the collection at the specified index.
Visual Basic
NotOverridable Public Sub Insert( _
ByVal index As Integer, _
ByVal value As Object _
) _
Implements IList.Insert
C#
public void Insert(
int index,
object value
);
index The zero-based index where the parameter is to be inserted within the collection.
value The ULParameter object to insert.
System.ArgumentNullException - You cannot set a parameter using a null reference (Nothing in Visual Basic).
System.IndexOutOfRangeException - The index is invalid.
System.InvalidCastException - The value specified must be a ULParameter.