摘要: 简单一维集合的使用 //实例2个集合List < int > ages = new List < int >{21, 46, 46, 55, 17, 21, 55, 55}; List < string > names = new List < string >{"wang", "li", "zha 阅读全文
posted @ 2017-11-06 16:59 ProZkb 阅读(347) 评论(0) 推荐(0) 编辑
摘要: DataSet.Tables[0].Rows[0][1]表示DataSet中第一张表(因为Tables[0]就是第一张表的意思)中第一行(Rows[0][])第二列(Rows[][1])的数据。DataSet.Tables["tableName"]是指定获取特定的表名。如果DataSet只有一张表, 阅读全文
posted @ 2017-11-06 10:10 ProZkb 阅读(286) 评论(0) 推荐(0) 编辑