Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two string arrays

Array1 = {"Paul","John","Mary"}
Array2 = {"12","13","15"}

I would like to know whether it is possible to join these arrays so that the resultant arrays have something like

{"Paul12","John13","Mary15"}
share|improve this question

2 Answers

 var Array3 = Array1.Zip(Array2, (a, b) => a + b).ToList();
share|improve this answer
great.......... – Shanish Apr 11 '12 at 7:17

You can use a Zip.

var array1 = new[] {"Paul", "John", "Mary"};
var array2 = new[] {"12", "13", "15"};

var result = array1.Zip(array2, (a1, a2) => String.Concat(a1, a2)).ToArray();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.