Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 기초
- vb
- Firebird
- 입문
- Delphi
- 파라미터
- PostgreSQL
- VB.NET
- 델파이
- 초보
- 인스톨
- SDK
- winsock
- 설치
- 소니
- Visual Studio 2005
- 예제
- 파이어버드
- MySQL
- xml
- SQL
- 데이터베이스
- WIN32 SDK
- Visual Basic
- 문자열
- dll
- 시리얼 통신
- c#
- 셋업
- MFC
Archives
- Today
- Total
목록copy (1)
프로그래밍 노트
[C#] List에서 Array로 복사하기/ Array를 List로 복사하기
using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms; namespace ListToArray{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } /// /// List를 Array로 복사 /// /// /// private void btnListToArray_Click(object sender, EventArgs e) { List testList = new List(); Test test = new Test(); test.name = "aaa"; test.weight = 50.3; testList.Add(t..
C#/기타
2013. 6. 27. 19:00