Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tool to capitalize all methods/properties/fields

Is there any tool for C# (maybe some add-in for Visual Studio) that can capitalize all methods/properties/fields in project?

EDIT1: Note, ReSharper hasn't such possibility

EDIT2: I mean capitalize just First Letters!

EDIT3: ReSharper can do it manually, i.e. user should traverse ALL entities and fix it choosing proper option from context menu. I talk about button that do that automatically for ALL selected code

like image 780
Michael Z Avatar asked Feb 23 '26 21:02

Michael Z


1 Answers

Just think about it: how did the tool will knows where the word boundaries in set of characters which is written by user as identifier? Seams like it possible to create some capitalizer tool based on dictionary. But any way you'll must to check its results and fix issues.

like image 60
Win4ster Avatar answered Feb 26 '26 10:02

Win4ster