Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API Reference » ULParameterCollection class » Item properties

Item properties Next Page

Item(Int32) property


Returns the ULParameter at the specified index. In C#, this property is the indexer for the ULParameterCollection class.

Syntax

Visual Basic

Public Property Item ( _
ByVal index As Integer _
) As ULParameter

C#

public ULParameter this [
int index
] { get; set; }

Parameters
Property value

The ULParameter at the specified index.

Remarks

This is the strongly-typed version of DbParameterCollection.this[int].

See also