<see>, <see also>, and object browser?
/// <summary>
/// This type defines how intervals are drawn.
/// </summary>
public enum INTERVAL_TYPE {
/// <summary>
/// A fixed number of intervals (defined by <see cref="TimeLineViewer.ChartFormatting.NumIntervals"/>) is drawn.
/// </summary>
FIXED_NUMBER,
I was hoping that the <see> tag would induce a link when I viewed the enum member in the object browser. Instead, I just get the text 'TimeLineViewer.ChartFormatting.NumIntervals.'
Am I expecting too much intelligence from the object browser?
katesune

