Reputation: 2369
How can I disable the editor parameter-name text which has started to show since a recent update? In this array example "index:" is shown.
Upvotes: 2
Views: 1296
Reputation: 17447
This is called "Inline Hints" in Visual Studio. You can customize which are shown by going to
Tools Menu > Options > Text Editor > C# > Advanced > "Inline Hints" group
Turn the setting on and off as you like. In your particular case, you're looking for the "Show hints for indexers" option.
Upvotes: 4