I'm developing a Windows Phone app.
I have a listbox with this C# source code:
System.Collections.Generic.IEnumerable<OpenGame> items;
...
GamesList.ItemsSource = items;
If I want to add a new item (a new OpenGame object) to the GameList, how can I do it?