Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
Returns the ULParameter at the specified index.
Public Shadows Property Item(ByVal index As Integer) As ULParameter
public new 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.
IndexOutOfRangeException The index is invalid.
In C#, this property is the indexer for the ULParameterCollection class.
This is the strongly-typed version of DbParameterCollection.this[int].