public string Execute() { JsonWriter writer = new JsonWriter(); writer.PrettyPrint = true; WriteStructure(writer, this._rootStructure); var json = writer.ToString(); return json; }
public string Execute() { this._tcr = new TypeCircularReference<string>(); JsonWriter writer = new JsonWriter(); writer.PrettyPrint = true; WriteStructure(writer, this._rootStructure); var json = writer.ToString(); return json; }