Click or drag to resize

DateMotionCollection<T>.CreateImmutableView 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: 25.1.421.0 (25.1.421.0)
Syntax
public ImmutableDateMotionCollection<T> CreateImmutableView()

Return Value

Type: ImmutableDateMotionCollection<T>
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