.NET: ArrayList vs List

后端 未结 5 1561
别跟我提以往
别跟我提以往 2020-12-08 19:25

What is the difference between ArrayList and List in VB.NET

5条回答
  •  误落风尘
    2020-12-08 19:33

    List can make use of generics so that only objects of specific types can be placed into it, so that you can have extra type checking and so that you can cut down on processing time due to boxing and unboxing. Arraylist cannot use this. In almost all cases, you'll want to use a List rather than an Arraylist.

提交回复
热议问题