Copy List to List
Programming/C# / 2013. 10. 10. 15:22
For a list of elements
List<string> lstTest = new List<string>();
lstTest.Add("test1");
lstTest.Add("test2");
lstTest.Add("test3");
lstTest.Add("test4");
lstTest.Add("test5");
lstTest.Add("test6");
If you want to copy all the elements
lstNew.AddRange(lstTest);
If you want to copy the first 4 elements
List<string> lstNew = new List<string>();
lstNew = lstTest.GetRange(0, 4);
출처 : http://stackoverflow.com/questions/1952185/how-do-i-copy-items-from-list-to-list-without-foreach
반응형
'Programming > C#' 카테고리의 다른 글
Reading Excel Files in C# (0) | 2014.03.12 |
---|---|
C# 의 Shift 비트 연산 정리 (0) | 2013.12.18 |
Sorting (0) | 2013.10.02 |
C# 에서 콘솔 프로그램을 숨기는 방법 ( Using ProcessStartInfo Class ) (0) | 2013.07.23 |
Connection strings for Excel(OLEDB/ODBC) (0) | 2013.07.03 |