void header comment?
Hi,
is it possible to create a shortcut to insert a comment-block below the void-start line?
Example:
private void Testvoid(string testS)
{
MessageBox.Show("TEST");
}
Example with Shortcut:
private void Testvoid(string testS)
// ***************************************************************************
// * *
// * Testvoid: Text text text text... *
// * *
// * INPUT: string testS *
// * *
// ***************************************************************************
{
MessageBox.Show("TEST");
}
Thanks a lot
Best Regards
rene
Please sign in to leave a comment.
Rather than inventing your own syntax, why not use the standard XML Documentation Comments? That way, you'll get documentation in IntelliSense, and you can compile an API help-file directly from the comments.