I am building a very complex application that deals with arrays of number, strings, objects and names. I see there are many ways to do this such as I can build manual arrays
Working with Arrays in C# .NET
OR I can use Array class or I can use ArrayList class.
C# ArrayList
Question is, which is the fastest way?
Thank you for your expert advice!
Loading
VulpesPosted Mar 20, 2011, 4:11 PM
This is closely followed by List
If T is a value type (such as int, double etc) List
If T is a reference type, there's no appreciable difference in speed between List
Suthish NairPosted Mar 20, 2011, 4:15 PM