Maxence
Maxence

Reputation: 43

Highlight members and properties in Visual Studio

How to highlight C# class members and properties in Visual Studio 2010 (declaration and accessing) ?

Upvotes: 4

Views: 2169

Answers (3)

Shackles
Shackles

Reputation: 1264

Unfortunately VS can't highlight member variables by itself. There are several third party options, though. One of them (not for free but overall great) is Jetbrains Resharper. There are also free-to-use nightly builds which you can try out before purchasing.

Upvotes: 2

Morvader
Morvader

Reputation: 2313

Maybe you should have a look to this Visual Stiudio 2010 extension.

Upvotes: 1

Mehdi LAMRANI
Mehdi LAMRANI

Reputation: 11607

Here you'll find a general highlighting menu :

Tools > Options > Environment > Fonts and Colors

But I am not sure you can highlight class members and "regular" code, as highlighting is mainly for keywords.

If you REALLY Need this feature and have time to spend, try the Managed Extensibility Framework in VS2010 : MEF

Upvotes: 0

Related Questions