需要重构 C# 代码以进行 null 检查的工具
谁能建议我在 C# 代码中自动进行 null 检查重构?实际问题是,我有一个包含 500 个文件的 C# 控制台应用程序,其中每个文件都包含用户定义对象的主要 IF-ELSE 条件语句。现在,我需要对这些 IF-ELSE 条件语句中使用的所有对象(也是嵌套对象)进行 null 检查。
为了实现这一目标,我需要一个能够自动进行空检查的工具。
Can anyone suggest me for automating the null check refactoring in C# code? The actual problem is, I have a C# console application with 500 files where in each file contains so main IF-ELSE conditional statement for user-defined objects. Now, I need to put null checks for all the objects(also nested objects) used in these IF-ELSE conditional statements.
To achieve this, I need a tool which will place the null checks automatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ReSharper 将帮助您找到这些。这是一个示例:
ReSharper will help you find these. Here's an example: