Trying to serialise/deserialise this class, messagePack fails because an exception is thrown because no setter is available.
I've noticed that while parsing members, it will take all properties or variables but doesn't filter out properties that are readonly or writeonly.
Class TestClass
Public item As String = ""
Public ReadOnly Property readonlyProperty As String
Get
Return item
End Get
End Property
Private _getSetproperty As String = ""
Public Property getSetPproperty() As String
Get
Return _getSetproperty
End Get
Set(ByVal value As String)
_getSetproperty = value
End Set
End Property
End Class