Hello is there way to automatically generate documentation for
public methods, interfaces, fields etc.? e.g. now I should write
somethink like this to generate documentation for enum Bacgkround:
///
enum Background {
transparent, ///
light, ///
dark, ///
action, /// Background for action panel, e.g. with buttons
OK, Cancel etc.
}
I would like to write insted this:
enum Background {
transparent,
light,
dark,
action, /// Background for action panel, e.g. with buttons
OK, Cancel etc.
}
and avoid all redundant comments.