private StringBuilder bufar; // Contains an array of rows public static void Main() { JSONBuilder jb = new JSONBuilder(); jb.AddRow(); jb.Put("Greeting", "Hello"); jb.AddRow(); jb.Put("Greeting", "World!"); Console.WriteLine(jb.Build()); }