Change “Implement interface” template in Visual Studio

后端 未结 2 1575

I\'m constantly using the \"Implement interface\" shortcut in Visual Studio 2008. My \"problem\" is that i want Visual Studio to use the String-alias instead of

相关标签:
2条回答
  • 2021-01-19 22: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.

    0 讨论(0)
  • 2021-01-19 22:47

    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

    0 讨论(0)
提交回复
热议问题