mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
19 lines
944 B
C#
19 lines
944 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CPF.Windows.Json
|
|
{
|
|
/// <summary>
|
|
/// Json Object
|
|
/// </summary>
|
|
public class JObject : Dictionary<string, object>
|
|
{
|
|
public object this[int index] { get { return base[index.ToString()]; }set { base[index.ToString()] = value; } }
|
|
public object this[long index] { get { return base[index.ToString()]; } set { base[index.ToString()] = value; } }
|
|
public object this[Guid index] { get { return base[index.ToString()]; } set { base[index.ToString()] = value; } }
|
|
public object this[DateTime index] { get { return base[index.ToString()]; } set { base[index.ToString()] = value; } }
|
|
public object this[float index] { get { return base[index.ToString()]; } set { base[index.ToString()] = value; } }
|
|
public object this[double index] { get { return base[index.ToString()]; } set { base[index.ToString()] = value; } }
|
|
}
|
|
}
|