FastLookupCollectionT(IListT, Boolean) Constructor
Namespace: KGySoft.Collections.ObjectModelAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public FastLookupCollection(
IList<T> list,
bool checkConsistency = true
)
Public Sub New (
list As IList(Of T),
Optional checkConsistency As Boolean = true
)
public:
FastLookupCollection(
IList<T>^ list,
bool checkConsistency = true
)
new :
list : IList<'T> *
?checkConsistency : bool
(* Defaults:
let _checkConsistency = defaultArg checkConsistency true
*)
-> FastLookupCollection
Parameters
- list IListT
- The list that is wrapped by the new collection.
- checkConsistency Boolean (Optional)
- to keep checking consistency of the wrapped list and the inner storage;
to not check whether the wrapped list changed. It can be if the wrapped list is not changed outside of this FastLookupCollectionT instance. This parameter is optional.
Default value: .