Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Resharper 建议将私有方法转换为私有静态方法?有什么不同,什么是优势?这里需要一些输入。它是 C# 代码。
当方法不依赖对象的字段时,私有静态很好。
如果是这样,ReSharper 不会提出类似的建议。
因此,当您的方法仅取决于其参数时,最好将其设为静态。
编译器可以利用这些方法——在 SO 的某处解释过。