loadofprogrammer.tistory.com/145
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
namespace test
{
public partial class Form1 : Form
{
private void Form1_Load(object sender, EventArgs e)
{
List<int> list = new List<int>();
list.Add(1);
list.Add(10);
list.Add(100);
list.Add(1000);
list.Add(10000);
foreach (int a in list)
{
listBox1.Items.Add(a);
} // 밑에와 같은표현
list.Clear();
list.Add(9);
list.Add(90);
list.Add(900);
list.Add(9000);
list.Add(90000);
for (int i = 0; i < list.Count; i++)
{
listBox1.Items.Add(list[i]);
} // 위에와 같은표현
}
public Form1()
{
InitializeComponent();
}
}
}
저분의 블로그에 정리가 너무 잘 되있다.
자세한 코드는, 올려놓은 첨부파일과 저분의 블로그를 참고하자.. 감사합니다
'프로그래밍 > C#' 카테고리의 다른 글
[C#] 문자열이 모두 숫자인지 아닌지 판별. isdigit를 이용함 (0) | 2021.03.17 |
---|---|
[C#] Hash를 간단하게 사용해보자 (0) | 2021.03.16 |
[C#] ListBox를 사용해보자 (추가,삭제,Clear) (0) | 2021.03.16 |
[C#] Txt 파일에 한글을 읽거나 쓸 때 깨진다면? (0) | 2021.03.16 |
[C#] 갑자기 삭제된 개체에 액세스 할 수 없습니다 라는 에러가 발생한 경우 (0) | 2021.03.16 |
댓글