Gets or sets the value with the specified key.
'宣言
Public Overloads Property Item( _
ByVal As _
) As
'使用法
Dim instance As OrderedDictionary(Of TKey,TValue)
Dim key As
Dim value As
instance.Item(key) = value
value = instance.Item(key)
public Item(
) {get; set;}
パラメータ
- key
- The key of the value to get or set.
プロパティ値
The value associated with the specified key. If the specified key is not found, attempting to get it returns , and attempting to set it creates a new element using the specified key.