[Feature Request] Consolidate overloads
- Dominant language
- C#
- Stars
- 4.4k
- Forks
- 890
- Avg merge
- 2h 11m
- Merged PRs (30d)
- 10
Description
Given this source:
```csharp
namespace MyNamespace
{
public class MyClass
{
public void MyMethod() { }
public void MyMethod(float f) { }
public void MyMethod(float f, int i) { }
public void MyMethod(float v, int i) { }
public void MyMethod(float v, int i) { }
public void MyMethod(float v, int i) { }
public int MyMethod(float v, int i, string s) => 0;
}
}
```
`MyNamespace.MyClass.html` looks like this:

But I'd like to have an option to render it like this:

Is this currently possible?
Contributor guide
Assessment
This issue has not been assessed yet.