Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ReSharper C# naming style for private methods and properties

I like to make the first letter of private methods, properties and events lowercase and the first letter of public methods, properties and events uppercase. However, in ReSharper 7.1 there is only one option under C# naming style that applies all methods, properties and events. What is the best way to tell ReSharper to use a different convention for private only?

like image 226
Big McLargeHuge Avatar asked Dec 09 '13 19:12

Big McLargeHuge


People also ask

Does ReSharper work with C?

ReSharper by Language: C++ C++ support includes C, C++03, C++11, C++14, C++17, C++/CLI, and partially C++20. ATL, MFC and COM projects are supported.

What is ReSharper used for?

Even referring to ReSharper as a “refactoring” tool sells its capabilities short. The tool provides Code Analysis, Navigation and Search, Code Assistance, Code Generation, Unit Testing, Internationalization, XAML Editing Tools, Cross-Language Functionality, and more.

What is ReSharper C++?

ReSharper C++ is a developer productivity extension for Microsoft Visual Studio. Explore code, perform refactorings, find and fix errors and code issues, write quality code faster, and enjoy developing Unreal Engine games.

Is ReSharper C++ free?

Free 30-day trial, no evaluation key required. You will need an active Internet connection to proceed with installation. ReSharper C++ 2022.2.


1 Answers

You can create your own Naming Style Rule.

Resharper Options => Code Editing => [Language] => Naming Style => Advanced Options => +Add...

Verified that the requested functionality is possible using this option.

like image 52
Brian P Avatar answered Sep 23 '22 05:09

Brian P