I'm having trouble getting intellisense to show my summaries of my methods and variables. I have a DLL that I will be releasing to my developer team soon and without the intellisense working they won't know 100% what everything is for. They will just have a simple hint from the name of the method or variable.
/// <summary>
/// This method does something.
/// </summary>
/// <param name="sender">This is the first parameter.</param>
/// <param name="e">This is the second parameter.</param>
private void timer1_Tick(object sender, EventArgs e)
{
if (Ethernet.InternetConnection)
label1.Text = "Connected";
else
label1.Text = "Disconnected";
}
This is just from my current test application that I'm writing. But I've tried it multiple times with my custom DLL and it doesn't show up when I'm accessing methods or variables or classes in other projects using it.