Why are the deconstruct parameters in bold?

In Visual Studio 2022 I see the deconstruct parameters in bold? How can I disable it?

  public void Deconstruct(out string father, out string son, out int microEventId, out string text)
   {
       father = Father;
       son = Son;
       microEventId = MicroEventId;
       text = Text;
   }

0
1 comment

Hello Cristiano,

Could you please provide a screenshot demonstrating the specified behavior?

Please also check if the following option is enabled - ReSharper | Options | Code Inspection | Settings | Color Identifiers.

Thank you.

0

Please sign in to leave a comment.