Generating operation arguments on separate lines

When generating code for operations, you have the option of having each operation argument generated on a separate line.

This option is controlled by the MultiLineArgumentList property.

If you set the value of the property to False, the generated code looks like this:

void displayBatteryInfo(double percentLeft, int minutesLeft, bool isCharging);

If you set the value of the property to True, the generated code looks like this.

void displayBatteryInfo(double percentLeft,
                        int minutesLeft,
                        bool isCharging);
	

Feedback