-

[C#] Array 단점 . 장점


An array is a collection of similar data types.


장점

-  Strongly Typed

-  빌드 시 detecting



단점

- 한 번 초기화 되면 그 크기를 변화 시킬 수 없다.

- 배열에서 항목을 저장하거나 검색하려면 정수 인덱스를 사용해야 함!!!


Collection 을 써라. 


List


VS


ArrayList

-

+ Recent posts