I am looking for a refactoring plugin which specifically has the ability to take a declaration like this:
Dim myVar as MyType
or
Private MyVar as MyType
and turn it into this:
Private _myVar as MyType
Private Property MyVar as MyType
Get
return _myVar
End Get
Set (ByVal value as MyType)
_myVar = value
End Set
End Property
My examples are in VB however C# support would be greatly appreciated as well.
I am familiar with the VSS Template for Properties, however using that often feels slower than just typing.
Thanks in advance