DateMotionCollectionTCreateImmutableView 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.2.419.0 (24.2.419.0)
Syntax public ImmutableDateMotionCollection<T> CreateImmutableView()
Public Function CreateImmutableView As ImmutableDateMotionCollection(Of T)
public:
ImmutableDateMotionCollection<T>^ CreateImmutableView()
member CreateImmutableView : unit -> ImmutableDateMotionCollection<'T>
Return Value
Type:
ImmutableDateMotionCollectionTA 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