Before I share the details of my entry for the challenge I’ve got some tips for you to help you shrink the size your code: Xaml isn’t needed, it only takes up a lot of space. Read this article on using Silverlight without Xaml. Returns, tabs and spaces are bytes and increase the size of your file. Almost all may be removed. Every space next to punctuations may be removed, even next to keywords. Define arrays like this: int[]c=new{1,2,3,4,5}; Without any spaces. Note, the “int” that usualy goes between...