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
TThe type of elements in the first list.
UThe 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>