I have functions in c # aspx in visual studio 201 with 15 parameters approximately
function x (param1, param2, etc ...) {}
and I want to add documentation at the top for each parameter
/ * @ param1
* @ param2
* etc.
* /
function x (param1, param2, etc ...) {}
I have been adding this documentation manually but sometimes I write the parameters wrong or I forget one or do something else wrong, I would like to generate that documentation automatically, there is some way to do it in visual studio 2015 or I have to Continue doing it manually?