C# 컬렉션(ArrayList,Queue,Stack,Hashtable)
컬렉션(Collection) - 데이터 저장, 검색, 기타 데이터 처리 특화 - 자료구조(Data Structure) - 선언 방법, 참조 방법, 중요 메소드 ArrayList - 배열과 비슷 - 크기가 유동적(동적) using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _095_ArrayList { class Program { static void Main(string[] args) { ArrayList arrList = new ArrayList(); //Add 함수는 어떤 데이터형도 다..