Journal Week 10 Day 2
... Less than 1 minute
# Journal Week 10 Day 2
What is a List in C#?
What List methods seem like you might use them often? Why?
How would you retrieve an item from a list? What method could you use?
A list is similar to arrays in JS. They are used to store information
List add. It is a common one that you use to add more items to a list.
You could use the List[index] to get the info from a list at a certain index.