본문 바로가기

Programming/Unity - Reference

[Unity C# Reference] List

List : 배열의 수가 유동적으로 조절되는 배열. (Linked List)



List.Add(요소) : 리스트에 요소를 추가함

List.Add(23);



List.RemoveAt(번호) : 리스트의 해당 번호의 요소를 삭제함

List.RemoveAt(3);



List.Remove(값) : 리스트 내의 해당 값을 빼버림 (요소가 아니라 값을 다이렉트로 검색)

//단 중복이 될  경우는 가장 앞에 있는 값 1개만 제거됨

List.Remove(25);



List.Count : 리스트의 길이를 반환함


//리스트 초기화 예시

while(List.Count >0){

List.RemoveAt(0);

}


'Programming > Unity - Reference' 카테고리의 다른 글

[Unity C# Reference] Interface Class  (0) 2018.06.11
[Unity C# Reference] Physics.Raycast  (0) 2018.06.11
[Unity C# Reference] Transform  (0) 2018.06.11
[Unity C# Reference] CoRoutine  (0) 2018.06.10
[Unity C# Reference] Quternion  (0) 2018.06.09