示例#1
0
 public Form1()
 {
     InitializeComponent();
     JSONFactory.JSON_IO JIO = new JSON_IO(Utils.Utils.this_Path() + "\\TestTubeObjects.txt");
     string jsondata=JIO.JSON_Read();
     //JSONFactory.JSONObjects settings;
     Exception ee;
     if (!JIO.JSON_Deserialize<JSONFactory.JSONObjects>(jsondata, out settings, out ee))
         this.labelStatus.Text = ee.Message;
     else
         Init();
 }