How to deserialize "<MyType><StartDate>01/01/2000</StartDate></MyType>"
- by afin
How to deserialize "<MyType><StartDate>01/01/2000</StartDate></MyType>"
below is the MyType definition
[Serializable]
public class MyType
{
DateTime _StartDate;
public DateTime StartDate
{
set
{
_StartDate = value;
}
get
{
return _StartDate;
…