new to serialization

To make a class serializable, you just mark it with the serializable attribute:
Code:
[COLOR=Teal]In VB.NET[/COLOR]
<Serializable()> _
[COLOR=Blue]Public Class[/COLOR] Whatever
 
Back
Top