Deserialize to objects from a JSON stream.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static T Deserialize(
	string content
)
Visual Basic
Public Shared Function Deserialize ( 
	content As String
) As T
Visual C++
public:
static T Deserialize(
	String^ content
)
F#
static member Deserialize : 
        content : string -> 'T 

Parameters

content
Type: System..::..String
Serialized content.

Return Value

Type: T
Deserialized object.

See Also