C# /LINQ10 string[] 배열과 List<T> 객체의 간단한 LINQ 식 이용 -_-;; 예제가 너무 부실해 죄송합니다 ;; // Windows Form의 CheckBoxList의 체크한 아이템을 불러와 string[] 배열에 담는다. string[] st = new string[chkTableList.CheckedItems.Count]; for (int i = 0; i 2013. 6. 19. List<클래스>를 이용한 프로퍼티에 값 저장 하기 예제 List를 이용한 프로퍼티에 값 저장 하기 예제 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { // List에 담을 클래스이다!!! class Person { public string name { get; set; } public string mobile { get; set; } public string juso { get; set; } public string zipcd { get; set; } public int id { get; set; } } // DataContext 라는 클래스에서는 person 이라는 List 객체를 생성하여 리턴.. 2013. 2. 5. 이전 1 2 3 다음