|
|
|
|
|
by lan321
187 days ago
|
|
I usually prefer List<Foo> x = new();
since it gives me better alignment and since it's not confused with dynamic.Nowadays I only use var x = new List<Foo>();
in non-merged code as a ghetto TODO if I'm considering base types/interface. |
|