Retrieve the parameter by its index.

Namespace: Cartella.Interfaces
Assembly: CartellaBase (in CartellaBase.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
DbParameter this[
	int index
] { get; }
Visual Basic
ReadOnly Default Property Item ( _
	index As Integer _
) As DbParameter
	Get
Visual C++
property DbParameter^ default[int index] {
	DbParameter^ get (int index);
}

Parameters

index
Type: System..::..Int32
Integer index

Return Value

Parameter at index position, or null if index is out of range.

See Also