3

我想将字典转换为 Json。键是字符串,值是 CompaignModel 的 ICollection:

  IDictionary<string, ICollection<BuzzCompaignModel>>  BuzzCompaignByInterest ;

这是包含 BuzzCompaign 模型的内容:

 public class BuzzCompaignModel
   {
      public long BuzzCompaignId { get; set; }
      public string Name { get; set; }
      public string Description { get; set; }
      public DateTime EndDate { get; set; }
   }

如何将 BuzzCompaignByInterest 转换为 JSON

4

1 回答 1

3

使用 Json.NET 和 JsonConvert

http://james.newtonking.com/projects/json/help/SerializingJSON.html

字典或对象序列化到 Json 并不重要

于 2012-07-20T09:02:47.860 回答