RicoSuter / Namotion.Reflection

.NET library with advanced reflection APIs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C# 9 Record properties XML Documentation not carrying over the the generated property description

hrkeni opened this issue · comments

C# 9 records are documented this way:

    /// <summary>
    /// Returns a list of items.
    /// </summary>
    /// <param name="PageNumber">The page number.</param>
    /// <param name="PageSize">The page size.</param>
    public record ListItems(int PageNumber, int PageSize);

The expectation would be that the <param> documentation would carry over into the description of the property when the schema is generated.

Interesting case... pretty sure this is not supported by the xml docs reader in Namotion.Reflection. Moved issue over to the other repo.