.Using List

Unlike arrays, the List collection type resizes dynamically.  If you are working with data where you would need to be resizing an array a lot then use a list instead.  It is ideal for linear collections that you don’t need to adjust using an index. Good resources http://www.dotnetperls.com/list You need this namespace Declaring Adding Objects […]

Read More