ComposedCollection<T>
Represents the base class of a collection composed by the DI container
public class ComposedCollection<T> : ReadOnlyCollection<T>, IComposedCollection<T>
Inheritance
- interface IComposedCollection<T>
Namespace
Parameters
Parameter | Description |
---|---|
T
|
The type of the items in the collection
|
Constructors
ComposedCollection<T>
Constructs an instance of a composed collection
public ComposedCollection(IEnumerable<T> items)
Parameters
Parameter | Description |
---|---|
items
|
The items to add to the collection
|