I suggest add support for Generic List<T> intellisense
When you want place a code that uses Typed Generic List (List<T>), Intellisense does not suggest syntax.. i.e:
List<string> fields = new List<string>(){"One","Two","Three"};
When you type List, must to appears List<T> suggestion.
-
David commented
When typing List<string> fields = new L..., it suggests List, not List<string>. It is an issue for all generic types (Visual Studio does it properly)
-
Michel Bretschneider commented
What is your actual suggestion? When I type
new List<String>{"One", "Two"}.
Intellisense comes up with the usual List<T> suggestions plus applicable extension methods. Maybe your desired behaviour is already included. If so, just delete the suggestion or otherwise be a bit more specific.