[Missing <summary> documentation for "N:Bluefin.Utilities.Xml"]
Classes
Class | Description | |
---|---|---|
![]() | XmlBase T |
Common base for Xml serializable classes. For Example,
[Serializable()]
public class TestClass : XmlBase< TestClass >
{
private string m_firstName;
public string FirstName
{
get
{
return m_firstName;
}
set
{
if (m_firstName == value)
return;
m_firstName = value;
}
}
}
It can be used as
TestClass instance1 = new TestClass();
String serializedInstance = instance.Serialize();
...
TestClass instance2 = TestClass.Deserialize(serializedInstance);
...
|