Visual Studio 2010 + Resharper Tools|Options|Environment|Fonts and Colors
- by Gerard
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 another color as NotImplementedException in the VS2010 text editor, because I edited the color scheme.
What would be the difference in these kinds of types so that the color scheme handles them differently?
Note that I have Resharper installed but I also tried almost all Resharper entries.
I would like to have the ame color for both, but the color of the NotImplementedException type seems immutable.