Class CompareCollectionsResult<T>
- Namespace
- SunamoTextOutputGenerator._public.SunamoData.Data
- Assembly
- SunamoTextOutputGenerator.dll
Stores the result of comparing two collections, categorizing items as in both, only first, or only second.
public class CompareCollectionsResult<T>
Type Parameters
TThe type of elements being compared.
- Inheritance
-
CompareCollectionsResult<T>
- Inherited Members
- Extension Methods
Properties
Both
Gets or sets items present in both collections.
public List<T>? Both { get; set; }
Property Value
- List<T>
OnlyInFirst
Gets or sets items present only in the first collection.
public List<T>? OnlyInFirst { get; set; }
Property Value
- List<T>
OnlyInSecond
Gets or sets items present only in the second collection.
public List<T>? OnlyInSecond { get; set; }
Property Value
- List<T>