using System.Collections.Generic;
public static void Main()
var t1 = new [] {"A", "B", "C"};
var t2 = new [] {"1", "2", "3"};
IEnumerable<string> lst = null;
lst = t1.SelectMany(x => t2, (x, y) => String.Concat(x, y));
Console.Write(String.Format("{0} ", s));