Hey zerk, I'll post my suggestion even if you have already accepted an answer.
So here it goes: a personal knowledge base application, built with Windows Forms.
This app would store code snippets, notes, links to useful internet pages and whatever else you may find interesting.
As it has to organize the information, you would be inherently working with collections.
As it has to store the information, you would be working with databases (I'd suggest SQLite with System.Data.SQLite, really nice and easy to use) and maybe data binding.
Being a user interface accessing a database, you could try some multithreading in order to keep the UI responsive.
There's more, of course, it's a full application after all: WinForms controls, IO, configuration, System.Net, depends on what extent you go.
You can start it very basic (collection of code snippets and notes) and build onto it until you have a pluggable multi-user Enterprise Knowledge Base Server.
Plus, you would have a place to store your discoveries while working at it :).