我是赢得 7 应用程序开发的新手。我已经在 android 中完成了 app dev 并使用了 org.json 本机库。示例:org.json.JSONArray
, org.json.JSONException
,org.json.JSONObject
我希望 C# 中的功能与我在 java 中使用此 json 库的功能相似。请告诉我最好的库来做到这一点。目前我正在使用 codetitans 库。代码 :
JSonWriter wr = new JSonWriter();
wr.WriteObjectBegin();
wr.WriteMember("set_cookie","0");
wr.WriteMember("test",writer.ToString());
wr.WriteObjectEnd();
string line = wr.ToString();
/* This creates a jsonwriter object and then write key, value pairs.*/