资源简介
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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1407 2014-04-01 18:50 LitJson\IJsonWrapper.cs
文件 25028 2014-04-01 18:50 LitJson\JsonData.cs
文件 1487 2014-04-01 18:50 LitJson\JsonException.cs
文件 29791 2014-04-01 18:50 LitJson\JsonMapper.cs
文件 13543 2014-04-01 18:50 LitJson\JsonReader.cs
文件 11640 2014-04-01 18:50 LitJson\JsonWriter.cs
文件 23055 2014-04-01 18:50 LitJson\Lexer.cs
文件 781 2014-04-01 18:50 LitJson\ParserToken.cs
目录 0 2014-04-01 18:50 LitJson
----------- --------- ---------- ----- ----
106732 9
- 上一篇:mysql生成随机码
- 下一篇:AutofactMVC
评论
共有 条评论