Returns the ULParameter at the specified index. In C#, this property is the indexer for the ULParameterCollection class.
Visual Basic
Public Property Item ( _
ByVal index As Integer _
) As ULParameter
C#
public ULParameter this [
int index
] { get; set; }
index The zero-based index of the parameter to retrieve. The value must be in the range [0,ULParameterCollection.Count-1]. The first parameter in the collection has an index value of zero.
The ULParameter at the specified index.
This is the strongly-typed version of DbParameterCollection.this[int].