-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Create a new tool which converts method calls from passing individual arguments, to passing a struct/record/class, then refactoring all usages of the caller.
Before:
void MyFunction(bool arg1, string arg2, CustomObject arg3) {
...
}
MyFunction(true, "Hello World!", new CustomObject());
After:
void MyFunction(MyFuncArgs args) {
...
}
MyFunction(new MyFuncArgs(true, "Hello World!", new CustomObject());
Copilot
Metadata
Metadata
Assignees
Labels
No labels