C# List 대입 시 유의!
https://docs.microsoft.com/ko-kr/dotnet/api/system.linq.enumerable.tolist?view=net-5.0 Enumerable.ToList(IEnumerable) 메서드 (System.Linq) IEnumerable에서 List을 만듭니다.Creates a List from an IEnumerable. docs.microsoft.com using System.Linq; -> .ToList() 사용 Unity 작업 중 순간 삽질.. List list_0 = new List() { 1, 2, 3 }; List list_1 = new List() { 1, 2, 3, 4, 5 }; 대 충 요렇게 2개의 List가 있다 가정할 때 Debug.Log(list_0.Co..