Comment Sérializer property retournant une List(of List(of object))
J'ai une classe contenant une property retournant une List(of List(of Boolean)). Mais cette property ne se sérialize pas correctement. J'ai recherché dans les attributs xml mais je n'ai rien trouvé qui fonctionne. Merci de votre aide.
Code:
1 2 3 4 5 6 7 8 9 10
|
Private _hoursExcluded As List(Of List(Of Boolean))
Public Property HoursExcluded As List(Of List(Of Boolean))
Get
Return _hoursExcluded
End Get
Set(value As List(Of List(Of Boolean)))
_hoursExcluded = value
End Set
End Property |