erikzaadi / GithubSharp

No longer maintained, please use https://github.com/octokit/octokit.net
96 stars 47 forks source link

Use JavaScriptSerializer for JSON (de)serialization #7

Closed alexrp closed 12 years ago

alexrp commented 12 years ago

This serializer is generally more reliable and handles things such as dictionaries correctly, as opposed to DataContractJsonSerializer.

erikzaadi commented 12 years ago

Might remove the JavaScriptSerializer, doesn't work well on Mono..

alexrp commented 12 years ago

If you run into any issues with it, could you drop me an email with some info on how to repro and so on? We'd definitely like to keep Mono's JSSerializer up to speed with .NET.

erikzaadi commented 12 years ago

Sure thing.

For GithubSharp, I'm starting to use ServiceStack.Text, since it's faster than the native .NET serializer and Mono compatible. I'd really love to see that the Mono native one would be faster than ServiceStack :)