The .NET Dictionary object allows assignment of key/values like so:
Dictionary
Dictionary dict = new Dictionary&l
You can do this using the standard Dictionary, you just have to declare the nesting:
Dictionary> dict = ... string test = dict["first"]["second"] Dictionary>> dict = ... string test = dict["first"]["second"]["third"] etc