You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 30, 2021. It is now read-only.
// Gets the outer XML string of an XElement (inner XML and itself).publicstaticstringOuterXml(thisXElementelement);// Gets the inner XML string of an XElement.publicstaticstringInnerXml(thisXElementelement);
XML serializer (XmlSerializator)
// Serializes the specified items list to a XML string.publicstaticstringSerialize<T>(IList<T>items);// Serialize object to XElement.publicstaticXElementToXElement<T>(Tobj);// Deserialize XElement to object.publicstaticTFromXElement<T>(XElementxElement);