 | LazyCollectionT Constructor |
Initializes a new instance of the LazyCollection class
Namespace: Ignition.Utility.CollectionsAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.28229
Syntaxpublic LazyCollection(
Func<ICollection<T>> valueFactory
)
Public Sub New (
valueFactory As Func(Of ICollection(Of T))
)
public:
LazyCollection(
Func<ICollection<T>^>^ valueFactory
)
new :
valueFactory : Func<ICollection<'T>> -> LazyCollectionParameters
- valueFactory FuncICollectionT
- Factory used to populate the LazyCollection with its initial values upon first access
See Also