Click or drag to resize

DictionaryWithNullableKeyTKey, TValueItem Property

Gets or sets the element with the specified key.

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public TValue this[
	TKey key
] { get; set; }

Parameters

key  TKey
The key of the element to get or set.

Return Value

TValue
The element with the specified key.

Implements

IDictionaryTKey, TValueItemTKey
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is .
KeyNotFoundExceptionThe property is retrieved and key is not found.
NotSupportedExceptionThe property is set and the IDictionaryTKey, TValue is read-only.
See Also