VB转换成C#的问题

楼主: kevin2203 (小王子)   2016-06-14 01:15:30
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#不能这样表示吗
作者: GoalBased (Artificail Intelligence)   2016-06-14 01:27:00
[i] ? 你可以看一下说明阿..
作者: fatrabitree (胖兔子)   2016-06-14 03:51:00
还有<=跟<的问题
作者: TameFoxx (foxx)   2016-06-14 09:37:00
你VB是到Count-1 对吧因为List的编号都是从0开始 0 1 2 3 4 ... Count-1所以转成C#应该是i<CheckBoxList1.Items.Count
作者: wezmag (wezmag)   2016-06-17 16:57:00
converter.telerik.com 可以C#, VB互转

Links booklink

Contact Us: admin [ a t ] ucptt.com