DateMotionCollection<T>.Item Property |
Gets the list of the specified derivative.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic IList<T> this[
int index
] { get; }
Public ReadOnly Default Property Item (
index As Integer
) As IList(Of T)
Get
public:
virtual property IList<T>^ default[int index] {
IList<T>^ get (int index) sealed;
}
abstract Item : IList<'T> with get
override Item : IList<'T> with get
Parameters
- index
- Type: System.Int32
The derivative list to retrieve.
Return Value
Type:
IList<T>The requested list.
Implements
IDateMotionCollection<T>.Item[Int32]
Remarks
Specifying an index of 0 retrieves a list of all
values in the collection. Specifying 1 retrieves a list of all first
derivatives. Specifying 2 retrieves a list of all second derivatives.
And so on.
See Also