万能设置值
public void setValue(t value) where t : JToken { this.jObject[fieldName] = value; }
万能创建不同泛型的对象。
public static JObjectTarget createJObjectTarget(JObject jObject, string fieldName ) { JObjectTarget jObjectTarget = new JObjectTarget(jObject, fieldName); return jObjectTarget; }