Exemple #1
0
 public JSON_obj(List <JSON_obj> list)
 {
     this.obj_list = list;
     this.JStype   = JSobj_type.List;
 }
Exemple #2
0
 public JSON_obj(string str)
 {
     this.str_val = str;
     this.JStype  = JSobj_type.String;
 }
Exemple #3
0
 public JSON_obj(decimal val)
 {
     this.num_val = val;
     this.JStype  = JSobj_type.Number;
 }
Exemple #4
0
 public JSON_obj()
 {
     this.JStype = JSobj_type.Object;
 }