CSharpRepl
                                
                                
                                
                                    CSharpRepl copied to clipboard
                            
                            
                            
                        Overload help - incorrect parsing of custom xml doc (at least for example bellow)
Version
last
What happened?
/// <summary>Description</summary>
int M() => 0;
Xml received from roslyn is
<member name="M:Script.M">
    <summary>Description</summary>
</member>
we do not expect <member> tag.
Perhaps we could replace our parsing with Roslyn's internal one: https://github.com/dotnet/roslyn/blob/main/src/Workspaces/Core/Portable/Shared/Utilities/DocumentationComment.cs https://github.com/dotnet/roslyn/blob/main/src/Compilers/Core/Portable/InternalUtilities/DocumentationCommentXmlNames.cs https://github.com/dotnet/roslyn/blob/main/src/Workspaces/Core/Portable/Shared/Utilities/XmlFragmentParser.cs