Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to handle JSON in C#?

Tags:

json

c#

Is there an easy/elegant parser for dealing with JSON in C#? How about actually serializing/deserializing into C# objects?

like image 813
esac Avatar asked Nov 12 '09 03:11

esac


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.

Can we convert string to JSON in C?

Convert String to JSON Object With the JObject. Parse() Function in C# The JObject class inside the Newtonsoft. Json package is used to represent a JSON object in C#.


1 Answers

JSON.Net is a pretty good library

like image 152
Simon Fox Avatar answered Sep 27 '22 23:09

Simon Fox