VB一段程式码如下:
For Index As Integer = 0 To CheckBoxList1.Items.Count -1
If CheckBoxList1.Items(Index).Selected Then
Orders += CheckBoxList1.Items(Index).Text + "<br />"
End If
我把他转换成C#写成这样
for (int i = 0; i <= CheckBoxList1.Items.Count; i++)
{
if (CheckBoxList1.Items(i).Selected)
{
orders += CheckBoxList1.Items(i).Text + "<br />";
}
}
Items(i)这边显是错误 请问是哪里有问题 是C#不能这样表示吗