
基础
阿非
这个作者很懒,什么都没留下…
展开
-
++运算符在C/C++与C#/JAVA中的差异
++ 运算符The increment operator (++) increments its operand by 1. The increment operator can appear before or after its operand 增量运算符 (++) 将操作数加 1。增量运算符可以出现在操作数之前或之后The first form is a prefix increme原创 2011-06-06 14:10:00 · 1604 阅读 · 0 评论 -
一个关于WaitCallback和ThreadPool.QueueUserWorkItem的小例子
class CustomThreadPool { //仅仅只是计数 public static int count; public static Thread QueueUserWorkItem(Action action) { ret原创 2011-12-31 02:32:44 · 7423 阅读 · 0 评论 -
IHttpAsyncHandler 的一个DEMO
public class IHttpAsyncHandlerDEMO : IHttpHandler, IHttpAsyncHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plai原创 2012-05-31 12:45:31 · 2422 阅读 · 0 评论 -
IHttpAsyncHandler 的一个应用
public class IHttpAsyncHandlerDEMO : IHttpHandler, IHttpAsyncHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plai原创 2012-05-31 12:44:08 · 1424 阅读 · 0 评论 -
IHttpAsyncHandler 的一个DEMO
public class IHttpAsyncHandlerDEMO : IHttpHandler, IHttpAsyncHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plai原创 2012-05-31 16:34:12 · 2297 阅读 · 0 评论