1
I have an inquiry about overload function conversion issue
Problem reported by Taeil Park - 12/6/2023 at 12:27 AM
Resolved
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?

4 Replies

Reply to Thread
0
Misha Zhutov Replied
Employee Post
Hi Taeil,

We confirm that it is a bug. We will fix it and get back to you.

0
Misha Zhutov Replied
Employee Post
Taeil

We found and fixed the issue. Please contact us at support@submain.com and we will provide you with an interim build.
0
Taeil Park Replied
I have contacted you via e-mail regarding this issue, but have not yet received the interim build version. I downloaded and checked the 'GhostDoc Pro trial' version again just in case, but it seems that the problem was not fixed. What should I do?
0
Misha Zhutov Replied
Employee Post
Hi Taeil, 

That's strange, we did not receive the email from you. Could you please send a new email to support@submain.com?

Reply to Thread