Ist es möglich, zwei oder mehr Listen in .NET mit C # in eine einzige Liste zu konvertieren?
Beispielsweise,
public static List<Product> GetAllProducts(int categoryId){ .... }
.
.
.
var productCollection1 = GetAllProducts(CategoryId1);
var productCollection2 = GetAllProducts(CategoryId2);
var productCollection3 = GetAllProducts(CategoryId3);
AddRange
Methode?