ToolboxXmlStringDeserializeT Method |
http://www.emgu.com
Convert an xml string to an object
Namespace: Emgu.UtilAssembly: Emgu.Util (in Emgu.Util.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static T XmlStringDeserialize<T>(
string xmlString
)
Public Shared Function XmlStringDeserialize(Of T) (
xmlString As String
) As T
public:
generic<typename T>
static T XmlStringDeserialize(
String^ xmlString
)
static member XmlStringDeserialize :
xmlString : string -> 'T
Parameters
- xmlString
- Type: SystemString
The xml document as a string
Type Parameters
- T
- The type of the object to be converted to
Return Value
Type:
TThe object representation as a result of the deserialization of the xml string
See Also