You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
358 B
C#

using System;
using System.Collections.Generic;
namespace Prime31
{
// Token: 0x02000019 RID: 25
public class JsonObject : Dictionary<string, object>
{
// Token: 0x0600008C RID: 140 RVA: 0x00006358 File Offset: 0x00004558
public override string ToString()
{
return JsonFormatter.prettyPrint(SimpleJson.encode(this)) ?? string.Empty;
}
}
}