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)
Syntaxpublic ImmutableDateMotionCollection<T> CreateImmutableView()
Public Function CreateImmutableView As ImmutableDateMotionCollection(Of T)
public:
ImmutableDateMotionCollection<T>^ CreateImmutableView()
member CreateImmutableView : unit -> ImmutableDateMotionCollection<'T>
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