Visual Studio 2010 + Resharper Tools | Options | Environment | Fonts and colors

About fonts and colors in the VS2010 C # text editor with Resharper installed.

In the following method:

public void Method() { var lis = new System.Collections.ArrayList(); var exc = new System.NotImplementedException(); } 

ArrayList gets a different color as NotImplementedException in the VS2010 text editor because I edited the color scheme. What is the difference in these types of types so that the color scheme handles them differently? Please note that I have Resharper installed, but I have also tried almost all Resharper entries.

I would like to have the same color for both, but the color of type NotImplementedException seems unchanged.

+7
visual-studio-2010 color-scheme
source share
1 answer

By default, an incomplete exception is "make an element" in the parameters resharper, Resharper-> Options-> Tools> Todo. The to item is recognized by the regular expression, not the type. You can remove the todo object if you do not want the implemented exception to appear in the to-do list and have the same colors as the others. You can also change the color of the todo elements in general to make them the same color as the type identifiers, such as ArrayList, Tools-> Options-> Environment-> Font and Colors-> Resharper Todo item

+9
source share

All Articles