Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

7
  • This isn't really an array per se, but rather a collection. Although it can be accessed like an array, in memory it's stored as a linked list. Commented Dec 19, 2009 at 10:33
  • I don't think a List is internally stored as a linked list. It has to be as an array. Commented Dec 19, 2009 at 10:36
  • No, a List is a linked list internally. What makes you think it must be an array? Commented Dec 19, 2009 at 10:37
  • 8
    List<T> is using an array internally. You can find this either with Reflector or in the documentation. Commented Dec 19, 2009 at 10:39
  • 1
    List<T> is not a linked list. LinkedList<T> is a linked list. Commented Dec 19, 2009 at 13:57