.NET: ArrayList vs List

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

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

5条回答
  •  有刺的猬
    2020-12-08 19:56

    ArrayLists are even more space inefficient when used on 64bit to store primitive elements because of the 64bit wide memory references as opposed to 32bit references on 32bit machines, and boxing.

    See this for more details: http://blogs.msdn.com/joshwil/archive/2004/04/13/112598.aspx

提交回复
热议问题