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?

  1. A list is similar to arrays in JS. They are used to store information

  2. List add. It is a common one that you use to add more items to a list.

  3. You could use the List[index] to get the info from a list at a certain index.