yapabilirsiniz Sen JSON.Net kitaplığını kullanabilirsiniz. String formatter kullanmak yerine JSON'a gizlemek istediğiniz bir varlık sınıfı oluşturabilirsiniz. Örneğin, örn.
public class Account
{
public string Email { get; set; }
public bool Active { get; set; }
public DateTime CreatedDate { get; set; }
public IList<string> Roles { get; set; }
}
Account account = new Account
{
Email = "[email protected]",
Active = true,
CreatedDate = new DateTime(2013, 1, 20, 0, 0, 0, DateTimeKind.Utc),
Roles = new List<string>
{
"User",
"Admin"
}
};
string json = JsonConvert.SerializeObject(account, Formatting.Indented);
Console.WriteLine(json);
çıkışı: bu bir iyi çalışıyor
// {
// "Email": "[email protected]",
// "Active": true,
// "CreatedDate": "2013-01-20T00:00:00Z",
// "Roles": [
// "User",
// "Admin"
// ]
// }
Teşekkür ... –
O 'JsonConvert.SerializeObject olmalıdır (yeni {longUrl = longUrl});' Bu @ajgarn :) – ajgarn
olsa doğru. Onu düzeltti. :) –