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\'
Since .net 4.6 you can also define a Dictionary like this:
private Dictionary Values => new Dictionary() { { "Value_1", 1}, { "Value_2", 2}, { "Value_3", 3}, };
It's called Expression-bodied members!