Table of Contents

Class ExistsNonExistsList<T>

Namespace
SunamoDevCode.Data
Assembly
SunamoDevCode.dll

Generic class that separates items into two lists: existing and non-existing.

public class ExistsNonExistsList<T>

Type Parameters

T

Type of items in the lists.

Inheritance
ExistsNonExistsList<T>
Inherited Members
Extension Methods

Properties

Exists

Gets or sets the list of items that exist.

public List<T> Exists { get; set; }

Property Value

List<T>

NonExists

Gets or sets the list of items that do not exist.

public List<T> NonExists { get; set; }

Property Value

List<T>