본문 바로가기
프로그래밍/C#

[C#] List를 간단하게 사용해보자

by JR2 2021. 3. 16.

loadofprogrammer.tistory.com/145

 

★ 16. C# - List 사용 예제

List 에 대한 간략한 설명 및 사용 방법을 알아보겠습니다. [1] 일반적으로 배열은 동적으로 크기 조절이 되지 않지만 List는 가능합니다. [2] 리스트를 사용하면 배열의 크기에 대해서 크게 신경쓸

loadofprogrammer.tistory.com

 

 

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();
        }
    }
}

test.zip
0.19MB

저분의 블로그에 정리가 너무 잘 되있다.

 

자세한 코드는, 올려놓은 첨부파일과 저분의 블로그를 참고하자.. 감사합니다

댓글