I like to keep the comments and Xml documentation of my C# code fairly minimal. Preferring to make the code self-documenting where possible instead.
But the C# compiler gives a warning if I don't put an Xml comment on a destructor of a public class. Why is this?
Is there some useful information I should be putting into Xml comments here, which I've not been doing. I've never found the need to read the comments on a destructor myself. Is the compiler just being over-zealous?