Class BadGoodCollection<T>
- Namespace
- SunamoCollectionsGeneric.Collections
- Assembly
- SunamoCollectionsGeneric.dll
Collection that categorizes items into Bad and Good lists
public class BadGoodCollection<T>
Type Parameters
TThe type of elements in the collection
- Inheritance
-
BadGoodCollection<T>
- Inherited Members
- Extension Methods
Properties
Bad
Gets or sets the list of bad items
public List<T> Bad { get; set; }
Property Value
- List<T>
Good
Gets or sets the list of good items
public List<T> Good { get; set; }
Property Value
- List<T>