Convert an xml document to an object

C# | Visual Basic | Visual C++ |
public static T XmlDeserialize<T>( XmlDocument xDoc )
Public Shared Function XmlDeserialize(Of T) ( _ xDoc As XmlDocument _ ) As T
public: generic<typename T> static T XmlDeserialize( XmlDocument^ xDoc )

- T
- The type of the object to be converted to

- xDoc (XmlDocument)
- The xml document

The object representation as a result of the deserialization of the xml document