C
Cirene
I'm binding a datagrid to my business object. I get an error that the type
'abcshoppingcart'...is not marked as serializable.
So, I added a [Serializable] attribute in the class. But then a blue
squiggly appears with 'declaration expected'. Any idea why?
[Serializable]
Public Class abcshoppingcart
Public customer As New abccustomer
Public product As New List(Of abcproduct)
Public Sub New()
' constructor
End Sub
......
'abcshoppingcart'...is not marked as serializable.
So, I added a [Serializable] attribute in the class. But then a blue
squiggly appears with 'declaration expected'. Any idea why?
[Serializable]
Public Class abcshoppingcart
Public customer As New abccustomer
Public product As New List(Of abcproduct)
Public Sub New()
' constructor
End Sub
......