Change “Implement interface” template in Visual Studio

偶尔善良 提交于 2019-12-01 19:08:40

You cannot change the templates used during refactorings.

Templates that you can change are available in %ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE. Specifically, most of the CSharp ones for blank files and such are in %ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp

Maybe the person forcing you to use "String" would change their ways if they realized how much time this wasted. I personally don't understand this...

The IDE uses "string", and not "String" in all generated code - so by forcing a non-standard "standard" your team is inviting inconsistency. People can debate about which is better until they're blue in the face - but as you point out, using "String" is a pain in the ass.

just replace string with String (whole word, case sensitive) or don't use this factoring template. because after examination %ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE\ it seems to be hardcoded

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!