Welcome to Jonathan Parker's Blog Sign in | Join | Help

Browse by Tags

All Tags » WPF   (RSS)
Remix07 was a great learning experience. There is such a lot of stuff coming out of MS at the moment that I thought it would be useful to give a few links on resources and tips I picked up. Robert Penner did a session on WPF. He doesn't have any code Read More...
Iterators can be very useful sometimes. For example, you may need to process every second item in a collection. With the yield keyword it's easy to create a generic iterator that does this like so: class CustomIterator { public static IEnumerable<T> Read More...