Beispiel #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            JsonParson parson = new JsonParson();

            //string text = "{[123][1525][2541][5552][222][222][222][]555}";

            textBox1.Text = parson.Parser(textBox1.Text);
        }
Beispiel #2
0
 public void TestMethod1()
 {
     JsonParson parson = new JsonParson();
     string     text   = "{[][][][][][][][]}";
     string     result = parson.Parser(text);
 }