Visual Studio Fonts and Colors: Requires Great Customizability

For example, I want class fields, method names, and properties to be in bold, but I do not want them to be bold inside the method bodies. eg.

public static void **WriteStuff**(string notEvenUsed) {
    var x = 0;
    Console.WriteLine("Stuff");
}

I want WriteStuff to be in bold, but not WriteLine, x or notEvenUsed.

+3
source share
4 answers

You can write a Visual Studio add-in for this, but you will have a lot of work to do - you will need to write your own C # parser, not a task for the faint of heart.

ReSharper , Visual Studio Visual Studio (, notEvenUsed, , ), . ReSharper . ; , ( ).

+1

, .

html. , .

0

There are no built-in methods to accomplish what you want. I believe that ReSharper allows you to make more advanced color settings, but I would be surprised if that would allow such detail.

0
source

Visual Assist also allows you to make more color settings.

0
source

Source: https://habr.com/ru/post/1706401/


All Articles