You can, however, serialize objects into XML or binary; look into
the Xml.Serialization namespace to serialize to XML, and
the System.Runtime.Serialization.Formatters.Binary namespace to
serialize to binary.
What serialization does is take all the properties of an object and
store them in a file or in memory so you can store them easily
(to send over the internet, store settings, etc).