c# - How to get intellisense to autocomplete generic class angle brackets -


i'm working visual studio 2013. more of annoyance else, when make, say, list, contains generic class, how intellisense spit out angle brackets , series of class stand-ins?

for example, if type

new lis 

the intellisense dropdown highlight list<>

however, when press enter/tab/space/etc, get

new list 

when rather have

new list<t> 

where t highlighted , ready replaced.

is option somewhere in visual studio?

i don't think there setting such things.

but, there tool called resharper need. instead of replacing t empty <|> cursor ready write type.

new list<|> 

note: there may other tools same.


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -