JsonHelperiJsonDeserializeT Method |
Deserializes JSON string back to object
Namespace:
TreeksLicensingLibrary2
Assembly:
TreeksLicensingLibrary2 (in TreeksLicensingLibrary2.dll) Version: 2.1.8318.42066 (2.1.0.0)
Syntax public T iJsonDeserialize<T>(
string jsonString
)
Public Function iJsonDeserialize(Of T) (
jsonString As String
) As T
public:
generic<typename T>
T iJsonDeserialize(
String^ jsonString
)
member iJsonDeserialize :
jsonString : string -> 'T
Parameters
- jsonString
- Type: SystemString
String to deserialze
Type Parameters
- T
- Type of object
Return Value
Type:
TDeserialized object of specified type
Remarks The "i" named functions are here to allow access to static members in COM applications. In .NET applications you can call static methods directly and don't need to instantiate this class.
See Also