I want to know how C# collections are represented in memory? Are they represented as linked list or an array.In my project I have to make extensive use of list and performance is critical, so shall I create custom generic Linked List(with some additional features) or shall I use generic List class. Any help will be highly appericiated.
I want to know how C# collections are represented in memory? Are they represented
Share
Use Reflection (or ILSpy, etc) to view internal realization of c# collections