mvc3模型字符串数组属性获取对象引用未设置为对象的实例

时间:2011-11-20 22:16:51

标签: asp.net-mvc-3 arrays

在我的申请表中,我有一个

Public Class HomeIndexClientModel

我声明了这些属性:

Public strButtonBarProblemGuid() As String
Public strButtonBarProblemTitle() As String
Public strButtonBarButtonToRender() As String

在我的Sub New中,我的Linq中有一个循环,其中发生了以下情况:

            ReDim Preserve Me.strButtonBarButtonToRender(intButtonCount)  'set the size of the button bar array
            ReDim Preserve Me.strButtonBarProblemTitle(intButtonCount) 'set the size of the button bar array
            ReDim Preserve Me.strButtonBarButtonToRender(intButtonCount) 'set the size of the button bar array

如果我跟着

Me.strButtonBarProblemGuid(intButtonCount - 1)=“AA”'p.SystemUserFileId.ToString

我收到了错误。

我曾尝试弄乱0索引或数组偏移中的1但是两者都以相同的方式失败

提前致谢。

1 个答案:

答案 0 :(得分:0)

如果没有LINQ语句,很难看到设置这些变量的情况。请发布整个声明。

LINQ语句可能会将NULL放入您正在执行ReDim的那些变量中。