TrulyObservableOrderedSet(T).Item Property

TrulyObservableOrderedSetTItem Property

Gets or replaces an element in the ordered set at the specified index.

Namespace:  Rhino.Runtime.Notifications
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public T this[
	int index
] { get; set; }
Public Default Property Item ( 
	index As Integer
) As T
	Get
	Set

Parameters

index
Type: SystemInt32
The index of the element.

Return Value

Type: T
the element at the given index.

Implements

IListTItemInt32
Exceptions
ExceptionCondition
IndexOutOfRangeExceptionThrown if the index passed is out of bounds.
InvalidOperationExceptionThrown if the item that will be replaced at the specified index cannot be modified by the current assembly.
See Also