Matt
Resultados
1
preguntas formuladas por
Matt
¿Cómo se concatenan listas en C#?
6
respuestas
217
votos
323.2k
vistas
Si tengo: List<string> myList1; List<string> myList2; myList1 = getMeAList(); // Checked myList1, it contains 4 strings myList2 = getMeAnotherList(); // Checked myList2, it contains 6 strings myList1.Concat(myList2); // Checked mylist1,