resharper-postfix
resharper-postfix copied to clipboard
.IsNullOrEmpty() seems to have more priority than corresponding extension method
Pressing tab after mystring.IsNullOr
produces string.IsNullOrEmpty(mystring)
even if the namespace with IsNullOrEmpty()
extension method is in scope.
Actually, order is not be defined... If you are using your extension method more (statistically), our code completion will preselect it instead of postfix's static method...
I've not implemented 'hiding' of postfix items for simplicity (just like live templates are hiding some keywords in code completion), looks like it's time to implement it...
If you are using your extension method more (statistically)
Is it per-project or per-machine?