[Serializable] attribute gives 'Declaration expected' squiggly

  • Thread starter Thread starter Cirene
  • Start date Start date
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
......
 
Back
Top