<summary> tag not working for classes in MonoDevelop - known issue ?

Hi to all,

I’m documenting some code using xml tags, and ///

works fine for methods but not for classes ( MonoDevelop doesn’t display it ). I’ve checked with NGUI’s code, where all classes make use of summary as well, still won’t show up.

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

Bump - known issue, or am I the only one affected by this?

Cheers,

Gregzo