litjson.0.17.0.nupkg
2021-06-13 09:07:08 195KB litjson
1
LitJson.dll文件,用来处理json格式数据
2021-06-03 18:12:39 19KB LitJson json .net
1
第一步:先去下载LitJson并导入当前的项目。 unity\项目\Assets\Plugins\LitJson 第二部:引用litJson using LitJson; 第三步:litJson的使用 WWW www = new WWW(url, rawData, headers); yield return www; JsonData jd = JsonMapper.ToObject(www.text); string memberId = jd["memberId"].ToString();
2021-05-25 15:12:18 23KB Unity3D Json LitJson c#
1
litJson作为优秀的第三方库,是解析Json很好的工具。
2021-05-19 09:04:17 20KB LitJson
1
litJson作为优秀的第三方库,是解析Json很好的工具。
2021-05-19 09:04:16 179KB 工具
1
LitJson源码 From:https://github.com/LitJSON/litjson
2021-05-15 09:06:54 85KB Json LitJson
1
我的其他资源都是免费的,对于初学游戏者的帮助比较大的,其中有单片机,ARM,数据结构,window编程,MFC编程,cocos2dx,unity3d自己编写的小游戏。
2021-05-08 22:53:40 17KB litjson dll
1
能将类,List,Dictionary类型转换成json同时也能反转换为实体 如以下类的转换案例,希望能帮助大家。 class A{ public int b = 1; public string c = "abcd"; public Dictionary d = new Dictionary(); public Dictionary e = new Dictionary(); public List f = new List(); } A a = new A(); string json = JsonMapper.ToJson(a); A a1 = JsonMapper.ToObject(json); 如有疑问请下方咨询
2021-04-29 01:38:29 22KB LitJson unity unity3d json
1
用法可参见http://blog.csdn.net/candycat1992/article/details/10940245
2021-04-26 16:36:27 52KB Unity3D插件 Json解析
1
c#处理json格式数据
2021-04-22 09:05:06 18KB C# Json
1