为什么文件重命名有时会重构类名,有时不会?
我发现奇怪的是,文件重命名有时会要求重构内部类,而(大多数)有时只是重命名文件。
I found it curious that the file rename sometimes ask to refactor the class inside and (most) sometimes just renames the files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为类名必须与文件名完全匹配。它还可能取决于您的代码当时是否可以编译,尽管在这一点上不确定。
I think the class name has to match the filename exactly. It may also depend on whether your code compiles at the time, though not sure on that point.
除了AndrewS所说的之外,我相信如果你在一个文件中有多个类,它也不会要求重构它。
In addition to what AndrewS said, I belive that if you have multiple classes in a single file, it will also not ask to refactor it.
这是我可以验证的所有答案的完整列表
重构将不会触发如果
Here is a complete list from all answers that I could verify
The refactoring will not trigger if
当继承的类位于另一个程序集中时,可能会出现问题。对我来说,重新启动 VisualStudio 有时可以修复它。
There can be problems when the inherited class lays in another assembly. For me a restart of VisualStudio sometimes fixed it.