field: NonSerializable

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know if it is possible to apply the field: NonSerializable to an
event in Visual Basic 2005?

I am trying to serialize a complex object that contains lots of declarations
and event hanlders and would like to avoid having to implement Iserializable
just because of this shortcoming.

Thanks,
Hanika
 
Does anyone know if it is possible to apply the field: NonSerializable to an
event in Visual Basic 2005?

Not that I know, but you can use the new, custom event syntax instead.
That gives you full control over the backing delegate.



Mattias
 
Thanks.

Mattias Sjögren said:
Not that I know, but you can use the new, custom event syntax instead.
That gives you full control over the backing delegate.



Mattias
 
Back
Top