ReSharper 4.5 Namespace Conflicts
If a namespace in my project includes the same name as an external
reference, ReSharper will not show anything in the external references. This
is a really contrived example, but create a new class and set its namespace
to something like
namespace Company.Application.System.Stuff
{
public class Dummy
{
public Dumm()
{
System. <--- oops
}
}
}
When I type System. I see two entries in the tooltips:
Company.Application.System.Stuff and System. It does not matter which of
these two items I select, ReSharper won't show anything other than
System.Stuff. If I press Esc to stop completion and then press C (e.g.
System.c), I see only cex and ctx in the completion list instead of the two
dozen or so items I'd expect to see.
Please sign in to leave a comment.
Can this one be fixed in the next ReSharper update?
"Lothan" <lothan@newsguy.com> wrote in message
news:gse99e$2gl$1@is.intellij.net...
>
>
>