次の機能を匿名で実行したいと考えています。どうすればいいですか -
TableRow tr = new TableRow();
TableCell tc = new TableCell();
Label lbl = new Label();
lbl.Text = link;
tc.Controls.Add(lbl);
tr.Cells.Add(tc);
tblMain.Rows.Add(tr);
アップデート
私たちがするように -
tblMain.Rows.Add(new TableRow(/* Here I will add a TableCell */))