Json Library for .Net Microframework

I am running a lightweight web server using .Net Microframework, and I was wondering which libraries would work well for JSON serialization, but maybe for deserialization as well.

The problem I found with a lot of JSON libraries is that they use fancy .Net functions not available in MF, and more complicated than what I need.

I could easily write a simple library to accomplish my tasks, but I was wondering if anything else was available.

thanks

+7
source share
3 answers

The NetduinoHelpers library has a lightweight JSON analyzer that is specifically designed to minimize fingerprint: http://netduinohelpers.codeplex.com/

+3
source

Mike Jones uploaded <.NET> JSON serialization and deserialization for the .NET Micro Framework.

This is a JSON (de) serialization library that can encode (almost) any C # to and from a JSON string. It manages primitives (int, float, string), dates, objects (classes, arrays, dictionaries) and objects inside objects (inside objects, etc.).

...

I remember that it is about 13 thousand in size, so it is very large and slow, but it works.

+3
source

Not sure if you tried Json.NET as it has solution files for Silverlight and WindowsPhone. It is understood that if it works in limited environments such as those that can work in .NET Microframework.

0
source

All Articles