Is it possible to instantiate a Dictonary
in C# using the following syntax:
Person person = new Person();
var dictionary = new Dictionary { [person] = person };
If yes, then what version of C# supports it?
Currently I am running Visual Studio 2019 Community Edition, but it does not support this syntax.