资源简介
原LitJson已修改,已支持float数据类型,文件传输。不是dll文件,源码,拖入项目中直接使用,非常简单,不多做介绍啦。
代码片段和文件信息
#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
Float
Double
Boolean
}
public interface IJsonWrapper : IList IOrderedDictionary
{
bool IsArray { get; }
bool IsBoolean { get; }
bool IsDouble { get; }
//////////////////////////////////// add ///////////////////////////
bool IsFloat { get; }
bool IsInt { get; }
bool IsLong { get; }
bool Isobject { get; }
bool IsString { get; }
bool GetBoolean ();
double GetDouble();
//////////////////////////////////// add ///////////////////////////
double GetFloat();
int GetInt ();
JsonType GetJsonType ();
long GetLong ();
string GetString ();
void SetBoolean (bool val);
void SetDouble(double val);
//////////////////////////////////// add ///////////////////////////
void SetFloat(float val);
void SetInt (int val);
void SetJsonType (JsonType type);
void SetLong (long val);
void SetString (string val);
string ToJson ();
void ToJson (JsonWriter writer);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-02-20 10:14 LitJson\
文件 525 2017-06-12 16:23 LitJson\AssemblyInfo.cs.in
文件 1737 2017-06-12 16:23 LitJson\IJsonWrapper.cs
文件 181 2017-06-12 16:23 LitJson\JsonAttributes.cs
文件 27234 2017-06-12 16:23 LitJson\JsonData.cs
文件 1487 2017-06-12 16:23 LitJson\JsonException.cs
文件 34578 2017-06-12 16:23 LitJson\JsonMapper.cs
文件 3928 2017-06-12 16:23 LitJson\JsonMockWrapper.cs
文件 14061 2017-06-12 16:23 LitJson\JsonReader.cs
文件 13539 2017-06-12 16:23 LitJson\JsonReaderTest.cs
文件 12223 2017-06-12 16:23 LitJson\JsonWriter.cs
文件 23157 2017-06-12 16:23 LitJson\Lexer.cs
文件 850 2017-06-12 16:23 LitJson\ParserToken.cs
相关资源
- Unity纪念碑谷.rar
- Unity3d实现扭动挤压浏览效果
- unity案例入门坦克大战源码
- Unity3D游戏开发.pdf 宣雨松著完整高清
- Unity3D版水果忍者
- unity3d爆炸特效包
- unity3d_见缝插针源码及报告.zip
- Unity3d车库场景模型
- unity3d 警察动画模型
- unity3D 新手引导遮罩,支持圆形和矩形
- unity3d枪支武器包FPS第一人称射击游戏
- unity3d制作贪吃蛇
- unity3D暴力街区射击大战游戏源码
- Unity3D 实战视频教程 保卫萝卜 2D 游戏
- unity3d调用中央气象局城市天气数据,
- Unity 3D Paint in 3D (1.7.3)
- 2014年最新最好的Unity3d圣典之中文脚本
- Unity3D搓牌效果支持4个方向
- Unity3D课程设计 模拟火焰效果
- 贝塞尔曲线的unity3d实现
- [资源插件]Unity3D_UGUI HUD Text v1.4.1.zip
- ShaderlabVSCode 1.1.6.unitypackage
- Camera Path Animator unity3d 插件
- Unity录屏模块封装清晰的可调AVPro Mo
- FBX格式人物模型,资源齐全,带动画
- Unity3D 3D炸弹超人Demo
- unity3d坐标轴插件
- 龙腾简合unity工程师笔试题
- Terrain Assets.unitypackageUnity3d官方资源包
- Unity3D的仿真手模型,适用Leapmotion与
评论
共有 条评论