在使用antDesign blazor 时
@code{
string[] 选项list ="张三,李四".Split(',');
}
<RadioGroup @bind-Value="@radioValue">
@for(int i=0;i<选项list.Count();i++)
{
<Radio Value="@i">@选项list[i]</Radio> //这个位置总报 索引超出范围
}
</RadioGroup>
如上代码,在运行时总报 ”System.IndexOutOfRangeException:“Index was outside the bounds of the array.”"
我单步执行了一下,竟然出现循环完成后又再次执行了 Radio 语句
无法理解
我想要达到的结果
我的代码错在哪里?