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

SQL Anywhere 11.0.1 (中文) » UltraLite - .NET 编程 » UltraLite .NET 2.0 API 参考 » ULParameterCollection 类 » Item 属性

 

Item(Int32) 属性

返回指定索引处的 ULParameter。在 C# 中,此属性是 ULParameterCollection 类的索引器。

语法
Visual Basic
Public Property Item( _
   ByVal index As Integer _
) As ULParameter
C#
public ULParameter this[ 
   int index
] { get; set; }
参数
  • index   要检索的参数的从零开始索引。值必须在 [0,ULParameterCollection.Count-1] 范围内。集合中第一个参数的索引值为 0。

属性值

指定索引处的 ULParameter。

注释

这是 DbParameterCollection.this[int] 的强类型版本。

另请参见