barry-jones / live-documenter

.NET documentation generator and live reader. Generate documentation from .NET code and xml comments, fast, quick and easy.
https://livedocumenter.barryjones.me.uk
MIT License
71 stars 4 forks source link

ref return types are not handled correctly #38

Open barry-jones opened 5 years ago

barry-jones commented 5 years ago

Given the following code:

public ref Person GetContactInformation(string fname, string lname)
{
    // ...method implementation...
    return ref p;
}

The ref modifier is not displayed in the syntax, though it has been correctly read from the return type signature.