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

Browse by Tags

All Tags » Code   (RSS)
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...
These days I'm using Windows Live Writer to write my blog posts. This has greatly reduced the amount of time it takes to write a post. However when it comes to writing posts that contain code snippets there is still some pain involved. However now you Read More...
Have you ever wondered if there is a fast way to check or uncheck a list of checkboxes? Personally I hate having to click on each of those small boxes in order to select the options I want on a website . So I invented the SmartCheckBoxList. This is an Read More...