Force VS to use System.[Type] in Code Completion
Is it possible to have Visual Studio code completion use the System.[Type] instea开发者_开发百科d 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.
精彩评论