Resharper 5.0 live templates VB.Net
I have this live template
''' <summary>
''' $ClassName$
''' </summary>
''' <remarks></remarks>
<Test()>Public Sub $ClassName$()
$END$
End Sub
which result in this code
''' <summary>
''' ClassName
''' </summary>
''' <remarks></remarks>
<Test()> _
Public Sub ClassName()
End Sub
it is still using the line continuation symbol ( _) while it can leave that out. Can I somehow tell it to leave it out or is this something VS is adding and not R#?
TIA.
Please sign in to leave a comment.