List 사용 시 주의할 점
https://docs.microsoft.com/ko-kr/dotnet/api/system.collections.generic.list-1?view=netframework-4.8 List 클래스 (System.Collections.Generic) 인덱스에서 액세스할 수 있는 강력한 형식의 개체 목록을 나타냅니다.Represents a strongly t docs.microsoft.com List는 자료구조인 배열을 객체화시킨 클래스입니다. 표면적으로 들어난 장점은 크기를 지정할 필요없고 추가 데이터가 들어올 경우 자동으로 늘려줍니다. private void Awake() { ItemData[] datas = new ItemData[100]; List items = new List(); for (int i..
2020. 2. 13. 01:18