Reputation: 165
Monodevelop automatically generates verbose documentation for functions and classes if "///" is typed in the appropriate place, upon typing the third '/'.
I want it to go over all of my code, though - I thought there was some button somewhere, and I looked around in the drop-down menus, tried right-clicking file names, etc. I could not find such an option - does it not exist? I could not find a plugin that does that either.
Upvotes: 0
Views: 2441
Reputation: 31
Try to use Edit-> Document buffer.
It will make /// comments for all your public methods/classes without any comment upon it in current file.
It won't work if you have // comment upon method/class or for protected/private elements.
Upvotes: 2
Reputation: 16
It is not possible. Your options are:
Online searches have not come up with any plugins for monodevelop that would do that, and the option does not exist in the vanilla IDE.
Upvotes: 0