JSON serialization – DataContractJsonSerializer vs JavaScriptSerializer
In C#, when you have to work with JSON data you’re usually represented with two choices – DataContractJsonSerializer or JavaScriptSerializer. There are other popular third-party libraries out there, such as the popular Json.Net project, but for the rest of this blog let’s just focus on the two built-in JSON serializers and see how they differ. …
JSON serialization – DataContractJsonSerializer vs JavaScriptSerializer Read More »