I just recently ran into the "Search with Pattern" tool in the new ReSharper.

I tried to search for

private $Type$ $Var$ = new $Type$($TypeArgs$);

but when I search it just says "Cannot parse pattern"

when I take way the private access modifier it works. But I am trying to explicitly search for it with the access modifier.

I have also tried

$Modifier$ $Type$ $Var$ = new $Type$($TypeArgs$);

and that also returns "Cannot parse pattern"

Is this even possible?

link|improve this question

56% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Currently Search with Pattern can only search inside method body, not for a class member.

link|improve this answer
Oh thats a bummer. – Chris Watts Jul 31 '10 at 19:15
Has this been written up in YouTrack yet, so we can vote for it? – Joe White Aug 2 '10 at 1:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.