views:

48

answers:

2

python - django webmethod returns simplejson.dumps, how can I convert the simplejson string into C# 2.0 Object ?

for example,
dict -> Hashtable
string -> String
...

is there any JSON Serializable library in existing .NET framework or any 3rd party tool ?

A: 

Tried System.Json?

Foole
A: 

Or on Codeplex.com : JSON.NET

Jérémie Bertrand
although json.net is good alternative but I end up with XMLRPC instead JSON, and used http://code.djangoproject.com/wiki/XML-RPC, as using CookComputing.net its much easy !
Tumbleweed
Also www.xml-rpc.net is easy to use.
Jérémie Bertrand