Endri
Endri

Reputation: 804

Visual Studio editor invert character case shortcut

I wanted to know if there is any shortcut to switch letter case

example:

doItYourself to became DOiTyOURSELF

or

DOiTyOURSELF to became doItYourself

(I am using VS2010 but I wanted to know generally)

Upvotes: 1

Views: 106

Answers (1)

Dialecticus
Dialecticus

Reputation: 16761

I don't think there is. There's only functionality for upper and lower case. Notepad++ has this function in menu TextFX > TextFX Characters > iNVERT cASE. Also, check out the relevant question from Super User for other alternatives.

If this functionality is so much required in Visual Studio itself, you can make a Visual Studio add-in (better than VS macros).

Upvotes: 1

Related Questions