Wish B4xSerializatorJSON

b4auser1

Well-Known Member
Licensed User
Longtime User
It would be great to have an option to serialize B4xObjects not only to bytes array, but to JSON structure as well.

Someting like this:
B4X:
Type A_Type (a As String, b As Int)
Dim a As A_Type

Dim a_json_string As String = B4Xserializator.ConvertObjectToJSON(a)

===
Dim a As A_Type = B4Xserializator.ConvertJSONToObject(a_json_string)
 
Top