摘要: yield关键字用于遍历循环中,yield return用于返回IEnumerable<T>,yield break用于终止循环遍历。 以下对比了使用yield return与不使用yield return的情况。 不使用yield return, 是把结果集全部加载到内存中再遍历; 使用 yiel 阅读全文
posted @ 2018-10-29 22:34 MyPinky 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 多个模型,泛型? 参考文章 https://www.imooc.com/article/71888 阅读全文
posted @ 2018-10-17 18:01 MyPinky 阅读(384) 评论(0) 推荐(0) 编辑
摘要: C#数据库命封装在 System.Data.SqlClient 之中; 从使用的数据库中获取连接串connectionstring:"server=xx.xxx.xx.xx,xxxx: database=xxx:uid=xxxx:pwd=xxx;" 推荐使用using(){} 连接数据书库,再使用结 阅读全文
posted @ 2018-10-14 20:34 MyPinky 阅读(2167) 评论(0) 推荐(0) 编辑
摘要: 出现改问题的根本原因是因为,我更改过改类型的名字,而IDE并没有更改 ***.ashx。 注册类型名字。 所更改的类的名字应该是 "项目名字.文件名字“ 例如下图 应该更改类为 ”Wx_Api.ApiTest" 阅读全文
posted @ 2018-10-08 01:11 MyPinky 阅读(1313) 评论(0) 推荐(0) 编辑
摘要: 利用在服务器端的IIS,布置“请求处理映射”。从而处理,本地发出Post请求。Url指向web网站所在路径的请求映射。由映射代码实现服务器保存文件。 winform里面使用,WebClient的对象,完成Url请求; winform代码:文件保存的地址为服务器网站根目录下的files文件夹(需要提前 阅读全文
posted @ 2018-08-01 11:05 MyPinky 阅读(3521) 评论(1) 推荐(0) 编辑
摘要: <style> .col-center-block { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); } </style> 阅读全文
posted @ 2018-07-26 15:02 MyPinky 阅读(463) 评论(0) 推荐(0) 编辑
摘要: int[] 一维数组 int[,] 二维数组 int[] [] 交错数组 又称“数组的数组” 一维数组声明与初始化 声明: int[] a = new int[]; 声明与初始化: int array1 = new int[] {1,2,3,4}; int array1 = {1,2,3,4}; / 阅读全文
posted @ 2018-06-21 22:12 MyPinky 阅读(31156) 评论(1) 推荐(1) 编辑
摘要: <scipt type="text/javascript" src"cookie.js"> </script> //脚本署名方法 <body onload ="resizeRock(); greetUser();" onresize = "resizeRock();"> //重调浏览器触犯的事件 d 阅读全文
posted @ 2018-04-18 21:44 MyPinky 阅读(160) 评论(0) 推荐(0) 编辑