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