如何自动更改活动文档或整个项目中许多变量的名称?在我的项目中,我有很多可变的,它们都有泛型IReadRepository。
我想要这种类型的变量:
IDTOReadRepository<LongDocument, LongDocumentDTO>
IDTOReadRepository<Employee, EmployeeDTO>
有这样的名字:
_longDocumentReadRepository
_employeeReadRepository
现在我有许多名字没有遵循这种模式,我需要重构代码,需要花费很多时间来逐一更改它们。我使用的是visual studio和C#。