In C#, I have an implicit conversion operator (A) -> B
defined on Type A
.
When creating the documentation with DocFx, the conversion operator only appears for type A
, but not for type B
.
As a work-around, I tried to define the same conversion operator on type B, but this causes an "ambiguous operator definition" error.
I believe the documentation should list the conversion operator on both types, A
and B
. Is there a way to get DocFx to do this, or am I missing something?