api-doc-tools
api-doc-tools copied to clipboard
"mdoc update" appears to duplicate generic methods with update type param names
The following xml was found in the same file in the Forms source tree:
<Member MemberName="LoadFromXaml<TView>">
<MemberSignature Language="C#" Value="public static TXaml LoadFromXaml<TXaml> (this TXaml view, Type callingType);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TXaml LoadFromXaml<TXaml>(!!TXaml view, class System.Type callingType) cil managed" />
and:
<Member MemberName="LoadFromXaml<TXaml>">
<MemberSignature Language="C#" Value="public static TXaml LoadFromXaml<TXaml> (this TXaml view, Type callingType);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TXaml LoadFromXaml<TXaml>(!!TXaml view, class System.Type callingType) cil managed" />
The method signatures are identical, save for TXaml vs. TView. (Note the discrepancy between the MemberName and the MemberSignature attributes in the first stanza.)