2016.10.04. 17:29 List 인덱스로 접근할 수 있는 개체 리스트를 나타낸다. Add 개체를 List의 끝 부분에 추가 insert List 의 지정된 인덱스에 요소를 삽입 Remove List에서 맨 처음 발견되는 특정 개체를 제거 Find 조건과 일치하는 요소를 검색하고 전체 List에서 처음으로 검색한 요소를 반환 using System; using System.Collections.Generic; public class Enemy{ public string Name{get; set;} public int Level {get; set;} public int HP{get; set;} public int Exp{get; set;} public void printEnemyInfo(){ Con..