我正在使用Newtonsoft JSON DLL将从URL检索到的JSON字符串反序列化为VB.NET Class对象。一切正常,直到我到达以下JSON路径:
"breadcrumbs":[
[
"ABC"
],
"DEF",
"GHI",
"JKL"
],
我的Class属性如下:
Private m_breadcrumbs As List(Of List(Of String))
Public Property breadcrumbs() As List(Of List(Of String))
Get
Return m_breadcrumbs
End Get
Set(value As List(Of List(Of String)))
m_breadcrumbs = value
End Set
End Property
我看到以下异常:错误转换值" DEF"输入' System.Collections.Generic.List1 [System.String]'
我的问题是,我可以在Class对象中更改哪些内容以允许它使用此JSON结构? (注意:上面示例代码中的JSON结构完全是JSON字符串中返回的内容。)