Treycos
✅ Including documentation of the STL in a custom override
Hey there 👋
We're building a library that acts as a limited superset of the C# Standard Library
We'd have a method called
FooMathMin
that uses Math.Min
internally with some post-processing. It should have its own documentation followed by Math.Min
's original documentation if possible
The most obvious way to do so seems to use the <include/>
directive (https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/documentation-comments#d36-include) but the documentation is somewhat vague on which path
& file
to use
Is there a simple way to do this ?17 replies