c# 序列化 xmlserializer,binaryformatter,soapformatter
复制代码 //radio.csusing system;
using system.collections.generic;
using system.text;
namespace simpleserialize
{
[serializable]
public class radio
{
public bool hastweeters;
public bool hassubwoofers;
public double[] stationpresets;
[nonserialized]
public string radioid = "xf-552rr6";
}
}
//cars.cs
using system;
using system.collections.generic;
using system.text;
using system.xml.serialization;
namespace simpleserialize
{
[serializable]
public class car
{
public radio theradio = new radio();
public bool ishatchback;
}
[serializable, xmlroot(namespace = "http://www.easck.com/> public class jamesbondcar : car
{
[xmlattribute]
public bool canfly;
[xmlattribute]
public bool cansubmerge;
public jamesbondcar(bool skyworthy, bool seaworthy)
{
canfly = skyworthy;
cansubmerge = seaworthy;
}
// the xmlserializer demands a default constructor!
public jamesbondcar() { }
}
}
复制代码 //program.cs
using system;
using system.collections.generic;
using system.text;
using system.io;
// for the formatters.
using system.runtime.serialization.formatters.binary;
using system.runtime.serialization.formatters.soap;
using system.xml.serialization;
namespace simpleserialize
{
class program
{
static void main(string[] args)
{
console.writeline("***** fun with object serialization *****n");
// make a jamesbondcar and set state.
jamesbondcar jbc = new jamesbondcar();
jbc.canfly = true;
jbc.cansubmerge = false;
jbc.theradio.stationpresets = new double[] { 89.3, 105.1, 97.1 };
jbc.theradio.hastweeters = true;
// now save / load the car to a specific file.










