0

Subsonic 2.2 抛出错误

subsonic Invalid cast from System.Int32 to System.Byte[]

当我执行以下操作时

        If template.Content Is Nothing Then
            MsgBox("Blank Document")
        Else
            MsgBox("Document Present")
        End If

“模板”是一个 SubSonic 对象,其“内容”字段的类型为 Byte()

为什么是这样

4

1 回答 1

0

SubSonic 对象初始化不正确。

解决方案

Dim template as New TemplateDocument(Guid.NewID()) with {.content = Nothing}
于 2010-02-22T18:54:56.090 回答