
Hi,
We are trying to get the summary comment of a method, and have found that when an attribute is placed before the summary comment, the parser is unable to resolve the comments for the rest of the document.
public class MyTestClass
{
/// <summary>
/// This comment is correctly resolved
/// </summary>
[Export]
public static void TestMethod1()
{
}
[Export]
/// <summary>
/// This comment is attributed to TestMethod3. No summary is found for TestMethod2.
/// </summary>
public static void TestMethod2()
{
}
/// <summary>
/// This comment is attributed to TestMethod4
/// </summary>
[Export]
public static void TestMethod3()
{
}
/// <summary>
/// This comment is not attributed to any method
/// </summary>
[Export]
public static void TestMethod4()
{
}
}
Is there anyway to fix this?
Kind Regards, Rory Mathers