Monday, 9 September 2013

Concatenating Two Different List in C#

Concatenating Two Different List in C#

For example I have this two lists:
List<string> firstName = new List<string>();
List<string> lastName = new List<string>();
How can I concatenate firstName[0] and lastName[0], firstName[1] and
lastName[1], etc and put it in a new list?

No comments:

Post a Comment