在分隔線上產生作業引數

當針對作業產生程式碼時,可以選擇在分隔線上產生每個作業引數。

這個選項由 MultiLineArgumentList 內容控制。

如果將內容值設為 False,則產生的程式碼看起來如下所示:

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

如果將內容值設為 True,則產生的程式碼看起來如下所示:

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

意見回饋