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(String) 属性

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

语法
Visual Basic
Public Property Item( _
   ByVal parameterName As String _
) As ULParameter
C#
public ULParameter this[ 
   string  parameterName
] { get; set; }
参数
  • parameterName   要检索的参数的名称。

属性值

具有指定名称的 ULParameter。

注释

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

另请参见