Click or drag to resize

Utils_XmlDeserializeT Method (String)

Deserializes a text to an object.

Namespace:  MicaSystems.Utils
Assembly:  MicaSystems.Utils (in MicaSystems.Utils.dll) Version: 1.0.0.0 (1.1.0.123)
Syntax
C#
public static T Deserialize<T>(
	this string serialized
)
where T : class

Parameters

serialized
Type: SystemString
String to deserialize.

Type Parameters

T
The object type to be deserialized.

Return Value

Type: T
T : deserialized object.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also