摘要: 用new运算符动态的分配内存,用delete运算符释放这些内存 ###1、以int*为例: ####1.1、动态创建 int *channelLen; channelLen = new int[3]; ####1.2、动态释放 delete []channelLen; channelLen = NU 阅读全文
posted @ 2021-10-16 11:59 673613920 阅读(650) 评论(0) 推荐(0) 编辑
摘要: DataSet ds = SqlHelper.ExecuteDataset(SqlHelper.ConnString, CommandType.Text, Sql.ToString()); if (ds.Tables[0].Rows.Count > 0) { foreach (DataRow dr 阅读全文
posted @ 2021-10-16 11:32 673613920 阅读(564) 评论(0) 推荐(0) 编辑
摘要: public static List<int> GetAllIDBySql(string strSql) { List<int> lst = new List<int>(); DataSet ds = SqlHelper.ExecuteDataset(SqlHelper.ConnString, Co 阅读全文
posted @ 2021-10-16 11:18 673613920 阅读(427) 评论(0) 推荐(0) 编辑