假设我有这一行:
return _jsonParser.Parse(_fileReader.Read(fileLocation)) ;
然后,我删除“_jsonParser.Parse”部分:
return (_fileReader.Read(fileLocation)) ;
然后我开始写
return _csvP(_fileReader.Read(fileLocation)) ;
然后我按tab,这就是发生的事情
return _csvParser
自动完成确实完成了我的变量,但它删除了右边的所有行。
如何禁用它?在 resharper 5.1 中我没有这个问题。