0

json.netを使用しています

jsonをオブジェクトにデシリアライズした後、このオブジェクトのjsonソースを取得したい

例えば

objParent:{
  objChild1: {name:"testObj"},
  objChild2: {age: 25}
}

C#コードで

public ObjChild1
{
  public string name {get;set;}

  [JsonIgnore]
  public string JsonSource { get; set; }    //objChild1: {name:"testObj"}
}

public ObjChild2
{
  public int age {get;set;}

  [JsonIgnore]
  public string JsonSource { get; set; }   //objChild2: {age: 25}   
}
4

1 に答える 1

0

私は json.net をインストールしていませんが、標準クラスを使用すると、次のように個々のオブジェクトを単純にシリアル化して JSON 文字列に戻すことができます。

...
    public static class JSONHelper
    {
        public static string ToJSONString(this object obj)
        {
            JavaScriptSerializer serializer = new JavaScriptSerializer();
            return serializer.Serialize(obj);
        }
    }
...

    public ObjChild1
    {
        public string name {get;set;}

        [ScriptIgnore]
        public string JsonSource { get { return this.ToJSONString(); } }
    }    

    public class ObjChild2
    {
        public int age {get;set;}

        [ScriptIgnore]
        public string JsonSource { get { return this.ToJSONString(); } }
    }
于 2013-03-27T17:31:42.350 に答える