Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a JSON stringify and parse capability for VB.NET?

I looked on the JSON.org website but I couldn't find any JSON library for Visual Basic .NET, does one exist? Did anyone have any success using Json.NET with VB.NET?

like image 660
Robin Rodricks Avatar asked Jan 23 '23 08:01

Robin Rodricks


2 Answers

Have you seen the JavaScriptSerializer class?

like image 184
Russ Cam Avatar answered Jan 25 '23 21:01

Russ Cam


You can use the DataContractSerializer to serialize/deserialize JSON.

like image 35
tvanfosson Avatar answered Jan 25 '23 21:01

tvanfosson