我正在使用eclipse Neon,但这也可能出现在以前的版本中。
格式化程序允许在方法体的开头添加一个空行,但它不允许对构造函数执行相同的操作。此代码段直接取自格式化程序编辑器的预览代码:
fetch data from database and store in datatable
//call SQL helper class to get initial data
DataTable dt = sql.ExecuteDataTable("your_procedure");
dt.Columns.Add("CustomerID", typeof(System.Int32));
foreach(DataRow row in dt.Rows)
{
// code to assign values to newly created column CustomerID
row["CustomerID"] = 0; //assign value according to your requirement
}
//then bind datatable to gridview
gv.Datasource=dt;
gv.DataBind();
我希望构造函数看起来与方法相同。我在格式化设置中找不到办法。
(这不是关于格式化代码的正确方法的问题 - 这些是基于意见的关闭。这是关于在IDE中配置工具的问题。请保持讨论相关。)