Feature Request
Hello,
I would like to propose one small addition to "Generate Method Pattern".
Currently generated method looks like this:
private void GeneratedMethodName()
{
throw new NotImplementedException();
}
It would be nice also to have comment line like this:
private void GeneratedMethodName()
{
// TODO: Implement GeneratedMethodName
throw new NotImplementedException();
}
This would allow to see not implementedmethod in the task list.
Regards,
Yuri Nadestin
Please sign in to leave a comment.
I second this suggestion. This would be really useful.
Regards,
Phil
Yuri Nadestin wrote: