摘要: (一)EventKeyusing System;using System.Collections.Generic;using System.Linq;using System.Text;namespace EventDemo2{ public sealed class EventKey : Object { }}(二)EventSetusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace EventDemo2{ ... 阅读全文
posted @ 2012-07-20 08:04 焦涛 阅读(340) 评论(0) 推荐(0)
摘要: 参考文章http://hahha2003.blog.163.com/blog/static/248577920114204133758/本篇主要学习预处理命令(一)基本知识 (1)定义符号和取消符号定义的预处理指令#define 和 #undef (2)条件编译指令#if、#else、#endif之外,还有一个#elif.必须包括一条#endif语句 (3)#region和#endregion 用于代码折叠,这个经常用 (4)#warning、#error用于编译项目的时候有时就会看到错误列表窗口里列出出现的错误、警告或者消息的信息。 (5)#line(二)代码演示//#define DEB. 阅读全文
posted @ 2012-07-20 07:55 焦涛 阅读(352) 评论(0) 推荐(0)