C# Queue

    [ C# ] 컬렉션 ArrayList, List, Hashtable, Dictionary, Queue, Stack

    ArrayList arrayList = new ArrayList(); 원소 자료형에 제약이 없습니다. 때문에 연산량이 List보다 많습니다. arrayList.Add(원소); 원소를 추가한다 arrayList.Remove(특정 원소); 특정 원소를 지운다 arrayList.RemoveAt(인덱스); 해당 인덱스의 원소를 지운다 arrayList.RemoveRange(시작 인덱스, 마지막 인덱스); 시작 인덱스~마지막 인덱스까지의 원소를 지운다 arrayList.Clear(); ArrayList를 초기화 한다 arrayList.Contains(특정 원소); ArrayList에 특정 원소가 있는지 true, false로 반환한다 arrayList.Insert(인덱스, 원소); 해당 인덱스에 원소를 끼워넣는다..