为什么文件重命名有时会重构类名,有时不会?

发布于 2024-11-06 00:49:18 字数 47 浏览 3 评论 0原文

我发现奇怪的是,文件重命名有时会要求重构内部类,而(大多数)有时只是重命名文件。

I found it curious that the file rename sometimes ask to refactor the class inside and (most) sometimes just renames the files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

ㄖ落Θ余辉 2024-11-13 00:49:18

我认为类名必须与文件名完全匹配。它还可能取决于您的代码当时是否可以编译,尽管在这一点上不确定。

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.

短叹 2024-11-13 00:49:18

除了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.

九歌凝 2024-11-13 00:49:18

这是我可以验证的所有答案的完整列表

重构将不会触发如果


  • 命名空间不完全匹配
    约定(文件夹名称 =
    namepsacename)

  • 班级
    是通用的


  • 类名与文件名不匹配

  • 文件中有多个类

  • 文件中有错误

  • 文件位于另一个项目

Here is a complete list from all answers that I could verify

The refactoring will not trigger if

  • the
    namespace does not exactly match the
    convention (Foldername =
    namepsacename)

  • the class
    is generic

  • the
    classname didn't match the filename

  • there are more than one class in the file

  • there are errors in the file

  • the file is located in another project

杀お生予夺 2024-11-13 00:49:18

当继承的类位于另一个程序集中时,可能会出现问题。对我来说,重新启动 VisualStudio 有时可以修复它。

There can be problems when the inherited class lays in another assembly. For me a restart of VisualStudio sometimes fixed it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文