13
在C#.NET中将两个(或多个)列表合并为一个
是否可以使用C#在.NET中将两个或多个列表转换为一个列表? 例如, public static List<Product> GetAllProducts(int categoryId){ .... } . . . var productCollection1 = GetAllProducts(CategoryId1); var productCollection2 = GetAllProducts(CategoryId2); var productCollection3 = GetAllProducts(CategoryId3);