DynamicType.Item Property
Gets an item at a specific key.
Namespace: Microsoft.BusinessData.Runtime
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Default Property Item ( _
key As String _
) As Object
Get
Set
'Usage
Dim instance As DynamicType
Dim key As String
Dim value As Object
value = instance(key)
instance(key) = value
public Object this[
string key
] { get; set; }
Parameters
key
Type: System.StringThe key of the item.
Property Value
Type: System.Object
The item searched for.
Implements
IDictionary<TKey, TValue>.Item[TKey]