资源简介
从google开源项目LitJson上取出的LitJson源码。为纯cs文件。将其解压,放到你的项目中即可使用LitJson库了。例如:unity不支持json的处理,把解压的文件放到Unity3d的assets中的plugins目录下,即可在项目中using LitJson了。
代码片段和文件信息
#region Header
/**
* IJsonWrapper.cs
* Interface that represents a type capable of handling all kinds of JSON
* data. This is mainly used when mapping objects through JsonMapper and
* it‘s implemented by JsonData.
*
* The authors disclaim copyright to this source code. For more details see
* the COPYING file included with this distribution.
**/
#endregion
using System.Collections;
using System.Collections.Specialized;
namespace LitJson
{
public enum JsonType
{
None
object
Array
String
Int
Long
Double
Boolean
}
public interface IJsonWrapper : IList IOrderedDictionary
{
bool IsArray { get; }
bool IsBoolean { get; }
bool IsDouble { get; }
bool IsInt { get; }
bool IsLong { get; }
bool Isobject { get; }
bool IsString { get; }
bool GetBoolean ();
double GetDouble ();
int GetInt ();
JsonType GetJsonType ();
long GetLong ();
string GetString ();
void SetBoolean (bool val);
void SetDouble (double val);
void SetInt (int val);
void SetJsonType (JsonType type);
void SetLong (long val);
void SetString (string val);
string ToJson ();
void ToJson (JsonWriter writer);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1407 2012-10-16 15:39 LitJson\IJsonWrapper.cs
文件 26586 2012-10-16 15:39 LitJson\JsonData.cs
文件 1487 2012-10-16 15:39 LitJson\JsonException.cs
文件 30861 2012-10-16 15:39 LitJson\JsonMapper.cs
文件 13543 2012-10-16 15:39 LitJson\JsonReader.cs
文件 11650 2012-10-16 15:39 LitJson\JsonWriter.cs
文件 23055 2012-10-16 15:39 LitJson\Lexer.cs
文件 3034 2012-10-16 15:39 LitJson\LitJson.csproj
文件 781 2012-10-16 15:39 LitJson\ParserToken.cs
目录 0 2012-10-16 15:21 LitJson
----------- --------- ---------- ----- ----
112404 10
- 上一篇:DSP hpi接口实验
- 下一篇:OMNeT++ 5.1 leach 可运行
相关资源
- unity4.0官方正式版
- Behavior Designer 1.6.3(u2018.3.0).unitypa
- Unity纪念碑谷.rar
- A Pathfinding Project Pro v4.2.2.rar
- Unity 声音播放插件,支持将字符串转
- Gaia 1.7.2
- Unity3d实现扭动挤压浏览效果
- UnityShader卷轴效果
- 爱酱(绊爱Kizuna)模型
- 遗传算法越野小车unity5.5
- unity 3D 百度语音合成 并播放
- unity案例入门坦克大战源码
- Graph And Chart 1.91.unitypackage
- Animated Steel Coaster 1.51.rar
- Unity3D游戏开发.pdf 宣雨松著完整高清
- Unity3D版水果忍者
- unity3d爆炸特效包
- unity3d_见缝插针源码及报告.zip
- Unity3d车库场景模型
- unity3d 警察动画模型
- unity20多种烟雾以及爆炸特效
- unity博物馆.zip
- burpsuite_community社区版x86系统
- unity3D 新手引导遮罩,支持圆形和矩形
- 兼容unity的System.Drawing.dll
- unity3d枪支武器包FPS第一人称射击游戏
- UniWebView 3.unitypackage
- unity2D猛禽战机空战游戏完整源码
- Final IK 1.9
- ChangeSkin.rar
评论
共有 条评论