Deserializes the JSON string to the specified type.
| C# | Visual Basic | Visual C++ |
public static Object DeserializeObject( string value, Type type, params JsonConverter[] converters )
Public Shared Function DeserializeObject ( _ value As String, _ type As Type, _ ParamArray converters As JsonConverter() _ ) As Object
public: static Object^ DeserializeObject( String^ value, Type^ type, ... array<JsonConverter^>^ converters )
- value (String)
- The object to deserialize.
- type (Type)
- The type of the object to deserialize.
- converters (array< JsonConverter >[]()[])
- Converters to use while deserializing.
The deserialized object from the JSON string.