Click or drag to resize

DateMotionCollectionT, TDerivativeCreateImmutableView Method

Creates a view of this instance that is guaranteed not to change.

Namespace:  AGI.Foundation
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public ImmutableDateMotionCollection<T, TDerivative> CreateImmutableView()

Return Value

Type: ImmutableDateMotionCollectionT, TDerivative
A view of this instance that is guaranteed not to change.
Remarks

After calling this method to create an immutable view of this collection:

  • Elements added to the end of this collection will be ignored by the immutable view.
  • Changes to existing items in this collection will trigger a copy of this collection such that the immutable view will be unaffected.
See Also