本文介绍了JSON反序列化失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嘿!



我希望有人可以帮助我。

我收到了JSON,因此,我创建了一个班级。

到目前为止一直这么好:)



Hey!

I hope someone of you can help me.
I am receivin JSON and therefore, I created a class.
So far so good :)

Public Class HotelList

    <JsonProperty("@size")>
    Public Property Size As String

    <JsonProperty("@activePropertyCount")>
    Public Property ActivePropertyCount As String

    <JsonProperty("HotelSummary")>
    Public Property HotelSummary As List(Of HotelSummary)
End Class





通常情况下,HotelSummary是一个列表,但在某些情况下不是。

我应该如何处理?



提前致谢!!!

干杯



Normally, "HotelSummary" is a list, but in some cases not.
How should I handle that?

Thanks in advance!!!
Cheers

推荐答案


这篇关于JSON反序列化失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-27 15:34