Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This refactoring applies to:
- C#
What: Generate a private field or property from a constructor.
When: You want to quickly add and initialize a private field or property from a constructor.
Why: Writing private fields and properties can be time consuming and repetitive. Using this refactoring is quick and makes the program more robust.
How-to
Place your cursor on the parameter name within the constructor.
Press Ctrl+. to trigger the Quick Actions and Refactorings menu.
Next, select from one of the following:
Create and initialize field or Create and initialize property.