Captain Kenpachi
Captain Kenpachi

Reputation: 7215

Change case of parameters, variables, etc using Visual Studio

I am trying to find an easy way of implementing naming standards in my ASP.NET MVC project. Essentially, I just want to ensure that parameters are camel case, or something. Is there functionality built into Visual Studio Express or Pro for this purpose, or would I need to view all the source files and update by hand?

UPDATE: As suggested, I'm going with Resharper. Although it costs money, so if anyone's on a budget, CodeRush is free(-ish).

Upvotes: 1

Views: 96

Answers (1)

FreddieH
FreddieH

Reputation: 813

Jetbrains Resharper can help you do this, or at least notify you about correct naming conventions.

Upvotes: 2

Related Questions