开发者

Force VS to use System.[Type] in Code Completion

开发者 https://www.devze.com 2022-12-25 20:32 出处:网络
Is it possible to have Visual Studio code completion use the System.[Type] instea开发者_开发百科d of the keyword.

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消