In order to add anything to a List we need to access the list's Add method and pass in an argument to add.
In order to properly add something to a List it needs to at least be of that type. To add a Food item to our Food List we need to pass in a Food type to the List class's Add method.
When we run the application and step over the call to Add we can see that the List's Count goes up.
We can continue adding Foods to the list by using the Add method.
When we execute the second Add method call, we can see that the Count of the List goes up again.
To see what objects are in the List, expand the List object and the [0] and the [1].
In this view you can see that the List has the Cheetah Chips and Meatloaf.