Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a library to read JSON in C# on Windows Mobile? [closed]

I am trying to find a library to parse JSON on C# on Windows Mobile (working with Visual Studio 2005). The libraries that I have found that allow me to parse JSON in C# (litjson and Jayrock) don't work on Windows Mobile, they require classes that are not present in the .NET compact framework. Is there any library that I have overlooked? Or is there another easy way to parse JSON given these circumstances?

like image 237
Thomas Lötzer Avatar asked Oct 08 '08 15:10

Thomas Lötzer


People also ask

Can C use JSON?

JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects. It aims to conform to RFC 7159.

Which library is used for JSON?

Json-io is a simple Java library to serialize/deserialize JSON.


1 Answers

Json.NET supports the .NET 3.5 compact framework.

like image 130
James Newton-King Avatar answered Nov 07 '22 21:11

James Newton-King