Click or drag to resize

ClipboardSerializationDeserializeObjectFromStringT Method

Deserializes an object from a string containing Altaxo's XML format.

Namespace: Altaxo.Serialization.Clipboard
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

T
The deserialized object, or default(T) if either the object was null or had a type that was not the expected type.
See Also