xxxxxxxxxx
List > Ordered and Indexed Collection, May contain duplicates
Set > Collection of Unique values, not ordered, no indexing
xxxxxxxxxx
Set is unordered
List is ordered collection,
List allow duplicate elements
Set does not allow duplicates.
List can have multiple null elements
Set will allow only one null element.
The List can contain duplicate elements
Set includes unique items.