두 컬렉션을 연결할때 사용하며, 하나의 컬렉션으로 연결합니다.
public class Example
{
public static void Main()
{
Console.Write("<< Linq Concat 사용하기 >> \n");
List<string> lstCode = new List<string>()
{
"codeA",
"codeB",
"codeC"
};
List<string> lstName = new List<string>()
{
"Mr.Kim",
"Mr.Lee",
"Mr.Yoo"
};
var retVal = lstCode.Concat(lstName);
foreach (var item in retVal)
Console.WriteLine($"출력 : {item}");
Console.WriteLine(System.Environment.NewLine);
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}
출력 : codeA 출력 : codeB 출력 : codeC 출력 : Mr.Kim 출력 : Mr.Lee 출력 : Mr.Yoo |