Feature Request - Reverse Constructor Order #8661
moonymachine
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
Looks like a sorting bug. Methods with more parameters should appear last. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When a class has multiple constructors with a varying numbers of parameters, the order of the constructors in the api documentation begins with the parameterless constructor, but then displays from most to least parameters, opposite of how they are listed in the source code.
Example:
Currently, these constructors will be displayed in the following order in the resulting docs:
MyClass()
MyClass(int, char, string)
MyClass(int, char)
MyClass(int)
Beta Was this translation helpful? Give feedback.
All reactions