views:

26

answers:

0

Is it possible to have Visual Studio code completion use the System.[Type] instead of the keyword.

Example:

Autocomplete of List<String> myList = completes as:

List<String> myList = new List<string>();

whereas, I want:

List<String> myList = new List<String>():

This isn't the only example, but hopefully shows what I'm looking for.