Dictionary Literals in C#
C# Does not have a nice way to represent a dictionary as a single value: you can only create an empty dictionary and add entries one by one. Which is annoyingly verbose if you are used to a more reasonable programming language, Read more