Gets or sets the element with the specified key.
Namespace: Mindscape.SilverlightElementsAssembly: Mindscape.SilverlightElements (in Mindscape.SilverlightElements.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
C# |
---|
public TValue this[
TKey key
] { get; set; } |
Visual Basic |
---|
Public Property Item ( _
key As TKey _
) As TValue
Get
Set |
Visual C++ |
---|
public:
virtual property TValue Item[TKey key] {
TValue get (TKey key) sealed;
void set (TKey key, TValue value) sealed;
} |
Parameters
- key
- Type: TKey
The key of the element to get or set.
Return Value
The element with the specified key.
Implements
IDictionary<(Of <(<'TKey, TValue>)>)>..::..Item[([( TKey])])
See Also