It would be very helpful if visual studio 2015/VB.net snippets are capable of getting the function name they're written in. For example a function like so:
private function SomeFunctionA() as Boolean
<insert snippet here and it generates 'SomeText - SomeFunctionA>
end function
private sub aSubRoutine()
<insert snippet here and it generates 'SomeText - aSubRoutine>
end sub
If it's possible or not, any information would be very helpful (this is a tricky one to google!) thanks in advance.
PS - I'm aware of how to create snippets, but I don't know any syntax that can do the above.