You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
在代码FillTable.cs中也有多处不规范的地方;在代码中,多次使用一个单独的字符作为变量名,如:
fillDataArrayToTable(Table t);
TableRow r = new TableRow();
for (int i = 0; i < strList.Count; i++);
TableCell c = new TableCell();
HtmlAnchor a = new HtmlAnchor();
请将这些单字符变量命名改为更能体现变量意义的名字。
The text was updated successfully, but these errors were encountered:
在代码FillTable.cs中也有多处不规范的地方;在代码中,多次使用一个单独的字符作为变量名,如:
fillDataArrayToTable(Table t);
TableRow r = new TableRow();
for (int i = 0; i < strList.Count; i++);
TableCell c = new TableCell();
HtmlAnchor a = new HtmlAnchor();
请将这些单字符变量命名改为更能体现变量意义的名字。
The text was updated successfully, but these errors were encountered: