- Lists are similar to CSharp Arrays but they have dynamic size (Useful when we don’t know the space required beforehand)
- List is a Generics type. All generic type uses
<...>
in its declaration - Most of the times in newer code Lists are used instead of Arrays
The System.Collections.Generic
namespace needs to be imported for using Lists and other generic datatype