当前位置: 代码迷 >> VB Dotnet >> expression is a value and therefore cannot be the target of an assignment解决方案
  详细解决方案

expression is a value and therefore cannot be the target of an assignment解决方案

热度:440   发布时间:2016-04-25 02:24:39.0
expression is a value and therefore cannot be the target of an assignment
问个问题,定义了一个List<T> list变量,T为自定义的一个struct,实例化一个struct后,再Add到list中。
然后,我需要重新遍历list修改刚刚加入的struct实例中的某个属性,就报了以上错误,应该怎么解决啊?

For i As Integer=0 to list.Count-1
  list.Item(i).name="new-name" '此处报错

------解决方案--------------------
For i As Integer=0 to list.Count-1
  list(i).name="new-name" '此处报错
  相关解决方案