Which method of commenting is most widely accepted or does it really matter?
I have been using
/**
* (Method description)
* @param
* @return
* etc
*/
However I have read of:
Precondition:
Postcondition:
Is there a more 'professional' way of commenting?
Thanks.