码迷,mamicode.com
首页 > Windows程序 > 详细

c#中怎么用for循环遍历DataTable中的数据

时间:2015-03-09 00:13:42      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:

            for (int i = 0; i < dataTable.Rows.Count; i++)
            {
                for (int j = 0; j < dataTable.Columns.Count; j++)
                {
                    Console.WriteLine(dataTable.Rows[i][j].ToString()); 
                } 
            }

             方法1:
            for (int i = 0; i < dt.Rows.Count; i++)
                    {
                        Response.Write(dt.Rows[i]["kjnybh"].ToString());//行集合.行【号】列【名】
                    }
            方法2 :
            foreach (DataRow dr2 in dt.Rows)
                    {
                        Response.Write(dr2["kjny"].ToString() );
                    } 

 

c#中怎么用for循环遍历DataTable中的数据

标签:

原文地址:http://www.cnblogs.com/sdpdf/p/4322500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!