How can I deserialize an arbitrary string into a DateTime in C# using the DataContractJsonSerializer?
I have looked at the use of the OnDeserializing attribute but it doesn't seem to be able to do anything but initialize values.
One option is to use something like
[DataMember(Name = "bday")]
private string _bday
{
get { return bday.ToString(); }
set { bday = DateTime.Parse("some string"); }
}
public DateTime bday{ get; set; }
But I don't really want to do this each time there is a DateTime to deserialize. Is there a better and prettier way?
Another alternative is using a custom DateTime object with the ISerializable interface.
IDataContractSurrogate apparently does not work for original .NET types like DateTime.
Is there a better way? Please don't reply with using JSON.NET or JavascriptSerializer.
