C# Class Open.Core.Helpers.JsonHelper

Utility methods for working with JSON.
显示文件 Open project: philcockfield/Open.TestHarness.SL

Public Methods

Method Description
Parse ( string json ) : System.Collections.Dictionary

Parses the given JSON into an object.

Serialize ( object value ) : string

Serialized the given object to a JSON string.

Method Details

Parse() public method

Parses the given JSON into an object.
public Parse ( string json ) : System.Collections.Dictionary
json string The JSON to parse.
return System.Collections.Dictionary

Serialize() public method

Serialized the given object to a JSON string.
public Serialize ( object value ) : string
value object The object to serialize.
return string