Some cool apps you will build in the book
-
Table Top Piano
Piano is one of the closest analogy of C# Dictionary in real world. As each key of a piano emits a different sound, dictionaries in C# mandates unique keys. By building this app, you shall learn how to use C# Dictionaries to tackle one-to-one relationships efficiently.
-
Tile Arrange Game
The objective of the game is simple. All you have to do is to arrange the tiles in order {1,2,3,4,5,6,7,8,9}. The empty space is provided to move the tile around. This is built using Tuple introduced in .NET 4.0. Once you design this game with Tuple, you would love this new generic way to represent data.
-
Tweet@Glance
This application pulls tweets of the user ids provided. It also shows their profile images. By building this application you shall learn about Generic Observable Collection introduced in .NET 4.0. This uses NTwitter for pulling the tweets.
-
Guess The Word
This is a game where you have to guess the word from a generated anagram. The program is created using some Generic Algorithms availalble in PowerCollection.





