컬렉션
using System.Collections; using System.Collections.Generic; using UnityEngine; public class test : MonoBehaviour { // 배열 int[] exp = new int[5]{1,2,3,4,5}; // ArrayList // 컬렉션 : 리스트, 큐, 스택, 해시테이블, 딕셔너리, 어레이리스트 ArrayList arrayList = new ArrayList(); //누군가 만들어 놓은 ArrayList를 사용하기 위해 using System.Collections; 선언 // list보다 더 연산 양이 많아 좋지 않다. // 어떤 자료형에도 얼메이지 않는 것을 쓰고 싶을 때 사용 // List List list = new Li..