2008年8月22日
摘要: 关于Debug和Release的区别之讨论本文主要包含如下内容:1. Debug 和 Release 编译方式的本质区别2. 哪些情况下 Release 版会出错2. 怎样“调试” Release 版的程序 一、Debug 和 Release 编译方式的本质区别Debug 通常称为调试版本,它包含调试信息,并且不作任何优化,便于程序员调试程序。Release 称为发布版本,它往往是进行了各种... 阅读全文
posted @ 2008-08-22 14:08 巍巍边疆 阅读(935) 评论(0) 推荐(0) 编辑
摘要: 标题 delegate 与 多线程 选择自 cpXparco 的 Blog 关键字 delegate 与 多线程 出处 很多时候写windows程序都需要结合多线程,在.net中用如下得代码来创建并启动一个新的线程。 public void ThreadProc(); Thread thread = new Thread( new ThreadStart( ... 阅读全文
posted @ 2008-08-22 09:14 巍巍边疆 阅读(245) 评论(1) 推荐(0) 编辑