September 2013
Beginner
292 pages
6h 19m
English
If we know the items to add ahead of time, we can add them when we create the List or Dictionary.
LearningScript as shown in the next screenshot.
Here's the Console output:

The analysis of the code is as follows:
List<string> myFavoritePonies = new List<string>() {"Princess Cadence", Fluttershy"};This is actually a single statement. It's on two lines to make it fit the screenshot. ...