I use Resharper 6.1 in conjunction with VS 2008 and Resharper Intellisense is enabled. It works fine, but some intellisense suggestions drive me crazy:
- '_' always suggests '_Appdomain'. Most of the time I just want to emphasize, so I have to avoid this sentence every time.
When calling a method where the variable I want to pass has the same name as the parameter, the first sentence is always a parameter. For instance:
Public Sub DoSomething()
Dim someVar As String
Dim result = DoSomethingElse(someVar :=) '<--this
End Sub
Public Sub DoSomethingElse(someVar As String)
'stuff
End Sub
I tried to find where I can remove this or change the sequence of sentences, but no luck.
Is there any way to change this?
source
share