|
|
|
|
|
by colejohnson66
2114 days ago
|
|
^This Here, the first is much less verbose, but still clear: var x = new Dictionary<string, MyComplexType>();
Dictionary<string, MyComplexType> x = new Dictionary<string, MyComplexType>();
But here, it’s ambiguous what the type of `x` is without Intellisense: var x = y.GetStuff();
|
|