I need to convert the library help file, so I downloaded the trial version and am testing it.
However, I am inquiring because I think there is a problem (error).
<C# source code (sample)>
public class Class1
{
/// <summary>
/// Adds the one.
/// </summary>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
public bool AddOne()
{
return false;
}
/// <summary>
/// Adds the one.
/// </summary>
/// <param name="a">a.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
public bool AddOne(int[] a)
{
return false;
}
/// <summary>
/// Adds the one.
/// </summary>
/// <param name="a">a.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
public bool AddOne(int[,] a)
{
return false;
}
}
<conversion result>
'public bool AddOne(int[] a)' function missing
If you click on the item without displaying the Method member, a blank screen will be displayed.
The above remark was automatically generated by Visual Studio 2022, and the phenomenon remains the same even if you change the format.
<reference>
The generated file after conversion is as follows.
Seems that 'M-ClassLibrary1.Class1.AddOne_1.htm' file was not created...
After testing, it seems that this phenomenon occurs in the array type overload function. Is there a solution?
Will there be any problem if it is the full version rather than the trial version?