I'm new to ReSharper and am surprised that there isn't a template defined for
public void MethodName(<params>)
{
}
I realize I could create one, but I would have thought this would have been part of the standard product. Perhaps I'm missing some other shortcut?
I'm not aware of any such default template, but as you pointed out it's terribly easy to write:
public void $METHODNAME$($PARAMS$)
{
$END$
}
However, I'm more that a tiny bit perplexed that you're interested in making all your methods both public and void by default.
I ended up with:
private $RETURN_TYPE$ $METHODNAME$($PARAMS$)
{
$END$
}
I tied it to the single letter "m".
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With