2015年5月5日
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.ComponentModel;using System.Threading;namespace AsyncPr... 阅读全文
posted @ 2015-05-05 14:27 Admin_csq 阅读(214) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections;using System.Collections.Specialized;using System.ComponentModel;using System.Data;using System.Drawing;using Sy... 阅读全文
posted @ 2015-05-05 14:18 Admin_csq 阅读(272) 评论(0) 推荐(0) 编辑
  2015年4月29日
摘要: static class Program { /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { ... 阅读全文
posted @ 2015-04-29 17:17 Admin_csq 阅读(159) 评论(0) 推荐(0) 编辑
  2015年4月23日
摘要: 我们在编程的时候,有时会使用多线程来解决问题,比如你的程序需要在后台处理一大堆数据,但还要使用户界面处于可操作状态;或者你的程序需要访问一些外部资源如数据库或网络文件等。这些情况你都可以创建一个子线程去处理,然而,多线程不可避免地会带来一个问题,就是线程同步的问题。如果这个问题处理不好,我们就会得到... 阅读全文
posted @ 2015-04-23 11:28 Admin_csq 阅读(162) 评论(0) 推荐(0) 编辑
  2015年4月22日
摘要: 一年前写了一篇短文ASP.NET MVC Action Filters,整理了Action Filter方面的资源,本篇文章详细的描述Action Filter。Action Filter作为一个可以应用到Controller Action(或者是整个controller)上的属性(Attribut... 阅读全文
posted @ 2015-04-22 17:54 Admin_csq 阅读(587) 评论(0) 推荐(0) 编辑