Yet another coding blog covering everything from C#, WPF, SQL, and Silverlight to any other random thought that passes my way…
RSS icon Home icon
  • Visual Studio keyboard shortcut to apply uppercase/lowercase to selection

    Posted on October 29th, 2009 biggert No comments

    So I’ve been doing this for a while manually (especially considering the performance benefit of UPPERINVARIANT over LOWERINVARIANT)  but recently took the time to Google and see if there’s an automated way to do this and alas, there is. Google sent me to Sara Ford’s blog where it mentions the shortcuts.

    • Press Ctrl+Shift+U to make the current character or selected characters uppercase
    • Press Ctrl+U to make the current character or selected characters lowercase

    Good to know!

    Leave a reply