0

假设我有这一行:

return _jsonParser.Parse(_fileReader.Read(fileLocation)) ;

然后,我删除“_jsonParser.Parse”部分:

return (_fileReader.Read(fileLocation)) ;

然后我开始写

return _csvP(_fileReader.Read(fileLocation)) ;

然后我按tab,这就是发生的事情

return _csvParser

自动完成确实完成了我的变量,但它删除了右边的所有行。

如何禁用它?在 resharper 5.1 中我没有这个问题。

4

1 回答 1

0

尝试使用回车键。输入插入,制表符替换。ReSharper 8 引入了对此进行配置的功能。

于 2013-08-16T12:49:00.377 回答