Table of Contents

Class ABL<T, U>

Namespace
SunamoData.Data
Assembly
SunamoData.dll

Represents a pair of lists with types T and U.

public class ABL<T, U>

Type Parameters

T

The type of elements in the first list.

U

The type of elements in the second list.

Inheritance
ABL<T, U>
Inherited Members
Extension Methods

Properties

First

Gets or sets the first list.

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

Property Value

List<T>

Second

Gets or sets the second list.

public List<U> Second { get; set; }

Property Value

List<U>