public static XmlDocument SerializeToXmlDoc(Object obj) { try { XmlDocument xmlDoc = new XmlDocument(); string xmlString = SerializeIt(obj); xmlDoc.LoadXml(xmlString ...
The main thing this would help with is cross-Activity communication, where Intent extras require Parcelable objects -- I often want to load something from the server on one screen and then pass it to ...