ClipboardSerializationDeserializeObjectFromStringT Method |
Deserializes an object from a string containing Altaxo's XML format.
Namespace: Altaxo.Serialization.ClipboardAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static T DeserializeObjectFromString<T>(
string s
)
Parameters
- s String
- The string containing Altaxo's XML format. Is is expected that the root node is named 'Object'.
Type Parameters
- T
- Type of the object that is expected to be deserialized.
Return Value
TThe deserialized object, or default(T) if either the object was null or had a type that was not the expected type.
See Also