Lists in C#:
Are a native type
Are imported from System.Collections.Generic library;
Use objects whose type is only known at runtime
Declare themselves as follows: List<type> my_liste=new List<type>();