Changing case using Visual Studio

  • Thread starter Thread starter apm
  • Start date Start date
A

apm

All or Anyone:

Is there a way to change from uppercase to lowercase all the characters of
all the source files in a project?

Thanks in advance.

David
 
apm said:
Is there a way to change from uppercase to lowercase all the characters of
all the source files in a project?

I can't imagine there being a single command for that, but you could do it
for *one* file like this: open it, press Ctrl-A (select all), and press
Ctrl-U (make lowercase).

Perhaps you could record this as a macro so as to automate its repetition?
I've never dabbled with VS.NET macros so I wouldn't know for sure.
 
It'd really upset the compiler! .NET framework method names are case
sensitive.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top