FileBackedDictionaryTKey, TValue, TKeyElem, TValueElemItem Property
Gets or sets the element with the specified key.
Namespace: Gemstone.IO.CollectionsAssembly: Gemstone.IO (in Gemstone.IO.dll) Version: 1.0.128 -- Release Build+2960d3f3619fdc53cad514a51817286dcfb19027
public TValue this[
TKey key
] { get; set; }
Public Default Property Item (
key As TKey
) As TValue
Get
Set
public:
virtual property TValue default[TKey key] {
TValue get (TKey key) sealed;
void set (TKey key, TValue value) sealed;
}
function get_Item(key);
function set_Item(value);
- key TKey
- The key of the element to get or set.
TValue
The element with the specified key.
IDictionaryTKey, TValueItemTKey