Which Editor inspection or color scheme makes Guid operator== green-colored for C# code?

Does anyone know which Editor inspection rule, color scheme rule, or severity rule colors the `==` operator between two C# `Guid` variables to green?

For example, see this following screenshot for what I'm referring to; the full code snippet is `if(possibleValues.Exists(x => x.Uid == request.PositionUId)) { /*if-block */ }`.

0
2 comments

It's the “Overloaded Operators” in C# color schemes settings.

1

Yep, that's what it is. Thank you!

0

Please sign in to leave a comment.