Reputation: 4305
In my class, i have a private method Log(). When I want to use log(in that same class), I type 'Log' and then when I type '(', it automatically code complete the code as something else. I tried using visual studio intellisense instead of resharper but this wrong code completion still happens. Do I have to uninstall resharper or is there anything else I can do?
Thanks.
Upvotes: 5
Views: 734
Reputation: 4305
The solution that I found so far is to disable '(' as code complete character. To do that(from resharper documentation):
To define symbols that do not invoke code completion
Are there any better/elegant solution?
Thanks.
Edit.
Apparently, i realized that i forgot to put static keyword that's why intellisense doesn't recognized that Log().
Upvotes: 1