• c# DataTable 序列化json


     if (ds.Tables[0].Rows.Count != 0)
                    {
                        var list = GetJsonString(ds.Tables[0]);
                        jsonStr = "{'jsonStr':'" + list + "','result':'1'}";  
                    }

     public string GetJsonString(DataTable DS)
        {
          List<Voucher> list = new List<Voucher>();
     
           
            for (int i = 0; i < DS.Rows.Count; i++)
            {
                Voucher cd=new Voucher();
                cd.id=DS.Rows[i]["VID"].ToString();
                list.Add(cd);
            }
            VoucherList voucherlist = new VoucherList();
            voucherlist.GetVoucher = list;
     
            return new System.Web.Script.Serialization.JavaScriptSerializer().Serialize(voucherlist);
     
        }
        public class Voucher
        {
            public string id{ get; set; }
            
        }
        public class VoucherList
        {
            public System.Collections.Generic.List<Voucher> GetVoucher { get; set; }
        }
  • 相关阅读:
    二分图模板(洛谷P3386)
    2013提高组复赛Day1
    2014Noip提高组复赛Day2题解
    Noip2016Day2T2 蚯蚓
    poj1655 Balancing Act
    codevs1919创世纪
    bzoj1040[ZJOI2008]骑士
    codevs1521 华丽的吊灯
    【20200414】ZumaV3-算法与数据结构课程作业
    【20171111】 Codevs 1214 线段覆盖
  • 原文地址:https://www.cnblogs.com/ft-Pavilion/p/5653797.html
Copyright © 2020-2023  润新知