31 lines
721 B
C#
31 lines
721 B
C#
using System;
|
|
using System.CodeDom.Compiler;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace SimpleJson
|
|
{
|
|
// Token: 0x020002E1 RID: 737
|
|
[GeneratedCode("simple-json", "1.0.0")]
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
internal class JsonArray : List<object>
|
|
{
|
|
// Token: 0x06003078 RID: 12408 RVA: 0x00046BA4 File Offset: 0x00044DA4
|
|
public JsonArray()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06003079 RID: 12409 RVA: 0x00046BB0 File Offset: 0x00044DB0
|
|
public JsonArray(int capacity)
|
|
: base(capacity)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600307A RID: 12410 RVA: 0x00046BBC File Offset: 0x00044DBC
|
|
public override string ToString()
|
|
{
|
|
return SimpleJson.SerializeObject(this) ?? string.Empty;
|
|
}
|
|
}
|
|
}
|