Click or drag to resize

IOrderedDictionaryTKey, TValueItem Property

Gets or sets the value at the specified index.

Namespace:  Ifs.Fnd.Core
Assembly:  Ifs.Fnd.Core (in Ifs.Fnd.Core.dll) Version: 4.52.10.0 (10.2.2.9999)
Syntax
C#
TValue this[
	int index
] { get; set; }

Parameters

index
Type: SystemInt32
The zero-based index of the value to get or set.

Property Value

Type: TValue
The value of the item at the specified index.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than 0.
-or-
index is equal to or greater than Count.
See Also