Does C# allow hashtables to be populated in one-line expressions? I am thinking of something equivalent to the below Python:
mydict = {"a": 23, "b": 45, "c": 67, "d": 89}
In other words, is there an alternative to setting each key-value pair in a separate expression?