예제 #1
0
파일: Core.cs 프로젝트: forek/MyJSONParser
 public JSONElement(string type, JSONElement parent, string value = null)
 {
     this.type   = type;
     this.parent = parent;
     this.value  = value;
     this.child  = new JSONElementList();
 }
예제 #2
0
파일: Core.cs 프로젝트: forek/MyJSONParser
 public JSONElement(string type)
 {
     this.type   = type;
     this.parent = null;
     this.value  = null;
     this.child  = new JSONElementList();
 }
예제 #3
0
파일: Core.cs 프로젝트: forek/MyJSONParser
 public JSONElement(string type, JSONElement parent, string value, string scope)
 {
     this.type   = type;
     this.parent = parent;
     this.value  = value;
     this.child  = new JSONElementList();
     this.scope  = scope;
 }