This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
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;
}
}
}