I was looking at How to reference generic classes and methods in xml documentation but it seems to be not quite getting what I'd like to properly set up in my XML documentation.
I have a helper method that converts an IDictionary<string, object>
to an IDictionary<string, string>
to address some compatibility issues.
I want to add XML documentation properly, but I'm getting squiggly lines under my text when I write <see cref="IDictionary{string, object}"/>
. So I tried to do as suggested (kinda) in the above referenced post: <see cref="IDictionary{TKey:System.String, TValue:System.Object}"/>
... but that doesn't seem to work either.
I want to properly document in XML "Converts an IDictionary<string, object>
to an IDictionary<string, string>
to address some compatibility issues." How to do this?