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
| T | The type of the list. |
Parameters
| list | The first list. |
| other | The second list. |
Returns
| ListT | A new list containing the items of both lists. |