Reputation: 449
I saw the following comment and noticed that Visual Studio highlights the type (DateTime).
How would I do this in my own C# comments?
Upvotes: 3
Views: 1816
Reputation: 18127
I think this is what you need: Location: Tools/Options/Envoirment/Fonts and Colors
Upvotes: 0
Reputation: 101681
You can use <see cref="">
tag for that:
<see cref="DateTime">
Upvotes: 1