Exemple #1
0
 public JsonProperty(JProperty property)
 {
     Name              = property.Name;
     Var               = new JsonVar(property.Name);
     Var.IsSettable    = false;
     Value             = IJsonValue.GetValue(property.Value);
     Var.Documentation = Value.Documentation;
 }