http://www.emgu.com
Convert an xml string to an object
Namespace: Emgu.UtilAssembly: Emgu.Util (in Emgu.Util.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static T XmlStringDeserialize<T>(
string xmlString
)
|
Visual Basic |
---|
Public Shared Function XmlStringDeserialize(Of T) ( _
xmlString As String _
) As T |
Visual C++ |
---|
public:
generic<typename T>
static T XmlStringDeserialize(
String^ xmlString
) |
Type Parameters
- T
- The type of the object to be converted to
Return Value
The object representation as a result of the deserialization of the xml string
See Also