DateMotionCollectionTItem 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: SystemInt32
The derivative list to retrieve. 
Return Value
Type: 
IListTThe requested list.
Implements
IDateMotionCollectionTItemInt32
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