When a function use an array of class, the comment doesn't display in the syntax editor.
It was tested in your own test application, ".Net Language Reflection". The summary of the class a is correctly display but not the function summary.
Here is the exact code :But the comments work when you replace
by
I will mail you all the project of this exemple DLL.
Best regards,
Benjamin LAFFONT
[Modified at 05/11/2007 05:04 AM]
[Modified at 05/11/2007 05:05 AM]
It was tested in your own test application, ".Net Language Reflection". The summary of the class a is correctly display but not the function summary.
Here is the exact code :
namespace Cpt.Wrappers
{
using System;
public class Test
{
/// <summary>
/// 1
/// </summary>
public class a
{
}
/// <summary>
/// 2
/// </summary>
/// <param name="valPtr">3</param>
/// <returns>4</returns>
public static int b(a[] valPtr)
{
return 0;
}
}
}
public static int b(a[] valPtr)
public static int b(int[] valPtr)
Best regards,
Benjamin LAFFONT
[Modified at 05/11/2007 05:04 AM]
[Modified at 05/11/2007 05:05 AM]