I have a structure that can be very easily represented using a three-deep nested dictionary, like so
private static Dictionary<string, Dictionary<string, Dictionary<string,string>>> PrerenderedTemplates;
Where the structure might be used something like this
PrerenderedTemplates[instanceID][templategroup][templatepart]
Now, I realise that this code is hard to read, because from looking at the definition statement, you can't tell what it's being used for. The only advantage I can really see in changing it to Dictionary<string, PrerenderedTemplate> is readability. Converting each nesting into its own class (e.g class PrerenderedTemplate{} class TemplateGroup{} class TemplatePart{}) would add many more lines of code for little (if any) computational advantage. As far as I can see.
- So, is my approach "ok" or should I go the extra mile and create seperate classes?
- Is it okay to cover how the nested
Dictionaryworks in the documentation/comments - Is there a best practice for handling this sort of nesting?
- Bear in mind, this is a private member, it doesn't need to be straightforward for people using the class.
Update
So, inspired by Reza, but unable to use Tuples, I decided to create my own key generator and implement his pattern like this:
private Dictionary<string, string> PrerenderedTemplates;
private string GetPrerenderedTemplateKey(string InstanceId, string FeatureId, string OptionId)
{
return new StringBuilder(instanceId)
.Append(FormatTools.LIST_ENTRY_DELIMITER)
.Append(templategroup)
.Append(FormatTools.LIST_ENTRY_DELIMITER)
.Append(templatepart).ToString();
}
Where FormatTools.LIST_ENTRY_DELIMITER is the Unicode Private Use Character 0xe04d.
PrerenderedTemplates["instance1"]["fruit"]["banana"]could just be represented asPrerenderedTemplates["instance1_fruit_banana"], like a namespace. – Iain Fraser Feb 16 '12 at 0:46PrerenderedTemplatesto list your template groups or template parts? Sort of in the way ofPrerenderedTemplates[instanceID].KeysorPrerenderedTemplates[instanceID][templateGroup]? If so then this is probably the easiest way to handle it. – M.Babcock Feb 16 '12 at 0:48