How to fix XML comment warnings automatically?
How to fix XML comment warnings automatically?
In my C# xml comments, I have many of these warnings:
CS1574 XML comment has cref attribute ‘days’ that could not be resolved
Where the <see> element has been used instead of <paramref>. An easy mistake.
/// /// Add days to . /// public static double AddDays(double date, int days) { return DateTime.FromOADate(date).AddDays(days).ToOADate(); }
View On WordPress







