Can someone point me out to some C# code examples or provide some code, where a Dictionary has been used as a property for a Class.
The examples I have seen so far don\'
Another example of using a dictionary as a static property with only the get accessor:
private static Dictionary dict = new Dictionary (){ {"Design Matrix", "Design Case"}, {"N/A", "Other"} }; public static Dictionary Dict { get { return dict} }
This structure can be used to replace values.