Is there a way in Visual Studio 2013 to change the syntax coloring of C # method parameters?
eg. Can I have AAA and BBB, but not someInt, Foo, ToString
private int MyMethod(int AAA, int BBB) { int someInt = new int(); someInt = AAA + BBB; string Foo = AAA.ToString(); }
I tried to go to Tools -> Options -> Environment -> Fonts and colors -> Text editor and change the Identifier , but this changed the coloring of almost everything (variables, methods, parameters).
source share