Insert method

Inserts an ULParameter in the collection at the specified index.

Syntax
Visual Basic
Public Overrides Sub Insert( _
   ByVal index As Integer, _
   ByVal value As Object _
)
C#
public override void Insert(
   int index,
   object value
);
Parameters
  • index   The zero-based index where the parameter is to be inserted within the collection.

  • value   The ULParameter object to insert.

See also