您好,登錄后才能下訂單哦!
最近我在codeplex上發了一個項目SmartObject(基于framework4.5,目前是1.0版本).用法如下:
// HowToUse
using Spider.Data;
//json example from http://www.json.org/example.html
string json1 = @"{""widget"":
{""debug"": ""on"",
""window"":
{""title"": ""Sample Konfabulator Widget""",
""name"": ""main_window"",
""width"": 500,
""height"": 500
},
""p_w_picpath"":
{""src"": ""Images/Sun.png"",
""name"": ""sun1"",
""hOffset"": 250,
""vOffset"": 250,
""alignment"": ""center""},
""text"": {""data"": ""Click Here"",
""size"": 36.23,
""style"": ""bold"",
""name"": ""text1"",
""hOffset"": 250,
""vOffset"": 100,
""alignment"": ""center"", ""onMouseUp"": ""sun1.opacity = (sun1.opacity / 100) * 90;""}
}
} ";
string json2 = @"{""menu"":
{ ""id"": ""file"",
""value"": ""File"",
""popup"":
{""menuitem"": [{""value"": ""New"", "" 2},{""value"": ""Open"", "" 1.2},{""value"": ""Close"", "" 55555} ]
}
}
}";
dynamic o1 = SmartObject.Parse(json1);
dynamic o2 = SmartObject.Parse(json2);
Console.WriteLine(o1.widget.text.size);
Console.WriteLine(o1.widget.text[1]); Console.WriteLine(o1.widget.text["size"]);
Console.WriteLine(o1.ToJson());// ToJson return json string
Console.WriteLine(o2.ToJson());
dynamic o3=new SmartObject();
o3.A="abc";
o3["B"]=2345;
Console.WriteLine(o3.IsDefine("C"));
IDictionary<string, object> dict=o3.AsDictionary();
測試運行:
項目地址:http://smartobject.codeplex.com/
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。