摘要: 打开iis,点击站点,找到请求筛选,编辑功能设置,修改相应的值。 阅读全文
posted @ 2019-05-15 17:58 jeffh 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 列举常用的委托 1、Action 定义:public delegate void Action(); 赋值: Action action1 = () => { }; Action action2 = delegate() { }; 调用: action1 (); action2 (); 2、Func 阅读全文
posted @ 2013-01-14 15:59 jeffh 阅读(153) 评论(0) 推荐(0) 编辑