Hi to all,
I’m documenting some code using xml tags, and ///
Actually, the content will show up for the first member of the class, instead of the class itself :
/// <summary>
/// This class is called SummaryFoo
/// </summary>
public class SummaryFoo // tooltip displays nothing
{
public int bar; // tooltip displays class summary
/// <summary>
/// Foos the bar.
/// </summary>
void FooBar () // tooltip behaviour OK
{
}
}
Any ideas welcome!
Cheers,
Gregzo