I'm currently working with visual studio 2013. This is more of an annoyance than anything else, but when I make, say, a List, that contains a generic class, how do I get Intellisense to spit out the angle brackets and series of class stand-ins?
For example, if I type
new Lis
The Intellisense dropdown will highlight List<>
however, when I press Enter/Tab/Space/etc, I get
new List
When I would rather have
new List<T>
Where T is highlighted and ready to be replaced.
Is this an option somewhere in visual studio?