List 선언하는 방법


public List<string> strlist;

   strlist = new List<string>();




<>은 제네릭(Generic)으로 자료형을 넣는다. 이러한 해당 자료형만 넣겠다는 의미이다.

위 코드는 GameObject만을 넣겠다는 의미이다.


LIst 추가하는 방법


strlist.Add()를 사용한다. 추가할 값을 Add의 매개변수로 넣는다.


strlist.Add("Hello");

strlist.Add("Hi");

strlist.Add("Good Bye");



LIst 제거하는 방법



Posted by sungho88
,