Combine two jagged lists into one
问题 Im having two jagged lists. First one: List<List<string>> firstList = new List<List<string>>(); { dd ff } { dd ff } { dd ff } Second one: List<List<string>> secondList = new List<List<string>>(); { gg hh } { gg uu } { hh uu } Im having a problem with combining both lists into one like this one: { dd ff gg hh } { dd ff gg uu } { dd ff hh uu } Any Concatenation attempt resulted in just adding secondList elements like another firstList rows like this: { dd ff } { dd ff } { dd ff } { gg hh } { gg