ListExtensions.CombinedWith<T>

Extension Method in ListExtensions

Declaration

public static List<T> CombinedWith<T>(this List<T> list, List<T> other)

Description

Combines the list with another.

Type Parameters

TThe type of the list.

Parameters

listThe first list.
otherThe second list.

Returns

ListTA new list containing the items of both lists.