Help with custom pattern
Greetings,
I am new to reharper patterns and I am trying to create a pattern for the following issue.
in c#
search and find any occurances of this
TryParse(input, out result)
and change it to
TryParse(input, NumberStyles.Any, CultureInfo.InvariantCulture.NumberFormat, out result)
I have followed several guids which have me sellect the code I want to search for which created the following pattern
TryParse($input$, out $result$)
However when I try to search it will not find any occurances of this pattern. I have tried to change the meanings of the placeholders but nothing seems to work.
What am I doing wrong?
Please sign in to leave a comment.
Filed a new ticket to YouTrack https://youtrack.jetbrains.com/issue/RSRP-427835.