Topic: Problem when seach forward ('/') finds match in quoted string
VS2010 sp1. ReSharper 6.1
C# file.
When a search finds a match w/i a quoted string, pressing "Enter" to end the search inserts extra quotes ?!
Search for "unrecogni", match found in this line:
Debug.WriteLine("Unrecognized property " + property.Name);
When I press 'enter' to end the search, I end up with this:
Debug.WriteLine("" + "Unrecognized property " + property.Name);
Pressing 'esc' cancels the search, and returns the cursor to wherever it was when the search started.