docfx
docfx copied to clipboard
[Feature Request] Consolidate overloads
Given this source:
namespace MyNamespace
{
public class MyClass
{
public void MyMethod() { }
public void MyMethod(float f) { }
public void MyMethod(float f, int i) { }
public void MyMethod<T>(float v, int i) { }
public void MyMethod<T, T1>(float v, int i) { }
public void MyMethod<T, T1, T2>(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?