If I create a class in C#, how can I serialize/deserialize it to a file? Is this somethat that can be done using built in functionality or is it custom code?
|
|
|
|
|
|
|
Example:
|
||
|
|
|
|
You need to use class XmlSerializer. Main methods are Serialize and Deserialize. They accept streams, text readers\writers and other classes. Code sample:
|
||
|
|
