Convert Class Object to JSON string?
After usng XmlSerializer and the information on: http://www.phdcc.com/xml2json.htm I'm having issue fully converitng my class object to a javascript readable string.
The XmlSerializer appears to ignore all variables containing NULL and so the final JSON output is incomplete. Also I have a DateTime object within my class. The converted date is horrible, certainly not even close to what Javascript can parse. Is there a way to set the datetime format.
Is there anything i can do to resolve this or a better tool for converting my class object to JSON string?

