'VS2019 (16.8.1), C#, XML Comments, Intellisense not showing
I have a Xamarin Forms project (C#) that I am working on in VS2019 (16.8.1) and I have noticed that if I add XML comments to the properties of classes within the project they are not then showing up when I hover over that property in another class where it is used.
Not working:
/// <summary>
/// Property1 && Property2 && Property3 && Property4
/// </summary>
public Boolean IsTypeA
{
get {
return Property1 && Property2 && Property3 && Property4;
}
}
This never used to be the case; any ideas what may have changed that I have missed in order to restore this functionality?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
