A generic tree of nodes, the easy way!

Today I saw a Stackoverflow-post about a genaral solution for tree and nodes. It reminds me of a solution I created to store departments in tree. I was surprised that no standard .NET collection does exactly what I need, so I created my own Node. It has properties like:

More..

Mapping without the switch command

In a project I had to map a lot of external codes and values to our codes and values. This results in methods with switch statements:

More..