Reputation: 14219
I'm trying to change the color of C# property access modifiers in Visual Studio 2010 (w/ ReSharper) and I can't for the life of me figure out what they are called in the list of display items. Anyone know?
To be clear, the get; set;
part of this snippet is what I'm trying to change:
public string Test { get; set; }
Upvotes: 1
Views: 333
Reputation: 174289
That's "ReSharper Method Identifier" and is also used for the color of method declarations.
Upvotes: 2