我試圖創建在C#這JSON字符串創建複雜的JSON字符串
[
{
accountId = 123,
reportType = 1,
reportTypeDesc = "Daily"
},
{
accountId = 123,
reportType = 1,
reportTypeDesc = "Daily"
},
{
accountId = 123,
reportType = 1,
reportTypeDesc = "Daily"
}
]
我想這種方式來做到這一點JSON,這裏是我的代碼:
var body = new []
new
{
accountId = 123,
reportType = 1,
reportTypeDesc = "Daily"
},
new
{
accountId = 123,
reportType = 1,
reportTypeDesc = "Daily"
},
new
{
accountId = 123,
reportType = 1,
reportTypeDesc = "Daily"
},
但我的編譯器「new []」區域中的錯誤
使這個Json成爲正確的方法是什麼?我嘗試了所有許多不同的變化,但沒有任何工程
你忘了括號:'新的[] {...}' –
我一直快樂使用這個框架我的JSON序列化需要:http://www.newtonsoft.com/json如果您使用Visual Studio,可以使用nuget將其添加到您的解決方案。 – Paul
http://stackoverflow.com/questions/331976/how-do-i-serialize-a-c-sharp-anonymous-type-to-a-json-string可能也有幫助。 – Paul