I know it's probably something easy but I just couldn't figure it out say I have the following code
string name;
name.LastIndexOf("aaa");
After I type the single quote reshaper will added another for me so I got
name.LastIndexOf("")
After I type aaa I got name.LastIndexOf("aaa|") but now my caret | is sitting inside the double quote...
How do I tell Resharper that I am done so it can add the ; and move to the next line without using the mouse or the direction key?
Perhaps I didn't make myself clear. Using the End key is not much different from the directional key. I was looking for a one step key stroke that will tell Resharper to complete the statement and move to the next block. I think it certain possible since Resharper is so smart. I just couldn't figure it out.