首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 9 10 11 12 13 14 15 下一页

2009年8月11日

摘要: 一、Debug 和 Release 编译方式的本质区别   Debug 通常称为调试版本,它包含调试信息,并且不作任何优化,便于程序员调试程序。Release 称为发布版本,它往往是进行了各种优化,使得程序在代码大小和运行速度上都是最优的,以便用户很好地使用。  Debug 和 Release 的真正秘密,在于一组编译选项。下面列出了分别针对二者的选项(当然除此之外还有其他一些,如/Fd /Fo,... 阅读全文

posted @ 2009-08-11 15:51 饭后爱 阅读(318) 评论(0) 推荐(0) 编辑

2009年7月9日

摘要: 这是一篇针对批处理中常用符号的详细解释,每个符号都有解释及相应的举例,希望通过比较系统的讲述,能让新手尽快入门。在这篇帖子中,我对常用符号的讲解做如下限定:1、收集批处理中经常用到的符号;2、每个常用符号,只讲述最常用的功能;深入的用法留待将来介绍;这样限定的原因,一是让新手系统地接触最常用符号的常用功能,不至于一开始就陷入技术细节中难以自拔;二是有些符号的用法非常罕见,没有特定的需求可以忽略掉,... 阅读全文

posted @ 2009-07-09 13:13 饭后爱 阅读(315) 评论(0) 推荐(0) 编辑

2009年7月7日

摘要: Introduction This article demonstrates the use of the WPF PageFunction object. The PageFunction object plays an important role in Page based WPF applications. The PageFunction class is almost similar to the Page class in WPF. You can design a PageFunction in XAML, and any WPF control can be added to the PageFunction object. Background We will look at the WPF PageFunction object basics, like what the PageFunction object is, how the PageFunction object is different from the Page object, and 阅读全文

posted @ 2009-07-07 20:04 饭后爱 阅读(988) 评论(0) 推荐(0) 编辑

2009年4月24日

摘要: 进程相对于一个小城镇,线程相当于这个城镇里的居民,STA(单线程套间)相当于居民房,是私有的,MTA(多线程套间)相当于旅馆,是公用的,Com对象相当于居民房或旅馆里的物品.接下去就好理解了,一个小城镇(进程)里可以有很多很多的(居民)线程,这个城镇(进程)只有一间旅馆(MTA),但可以有很多很多的居民房(STA).只有居民(线程)进入了房间(居民房或旅馆,STA或MTA)以后才能使用该房间里的物... 阅读全文

posted @ 2009-04-24 23:14 饭后爱 阅读(619) 评论(1) 推荐(0) 编辑

2009年4月11日

摘要: Telnet服务的配置步骤如下: 一、安装telnet软件包(通常要两个) 1、 telnet-client (或 telnet),这个软件包提供的是 telnet 客户端程序; 2、 telnet-server ,这个软件包提供的是 telnet 服务器端程序; 安装之前先检测是否这些软件包已安装,方法如下: [root@wljs root]#rpm –q telnet或[root@wljs root]#rpm –q telnet-client [root@wljs root]#rpm –q telnet-server 如果没有检测到软件包,需要进行安装,red hat linux 9默认已安装了telnet软件包,一般只要安装telnet-server软件包。 1、在red hat linux 9的安装盘中获取telnet-server-0.17-25.i386.rpm软件包。 2、安装软件包 [root@wljs root]#rpm –i telnet-server-0.17-25.i386.rpm 注意 LINUX AS4 阅读全文

posted @ 2009-04-11 23:45 饭后爱 阅读(564) 评论(0) 推荐(0) 编辑

摘要: Errors in code are inevitable. No matter how much testing you have done, when your application is deployed in a production environment, errors will occur. These problems can manifest as standard exceptions, as hangs where the CPU is being used 100 percent of the time, as deadlocks, where a couple of threads are locked and will never release the other's resources, and as crashes, where the application dies a silent death. In these cases, error logs often provide little or no help in pinpointi 阅读全文

posted @ 2009-04-11 10:04 饭后爱 阅读(519) 评论(0) 推荐(0) 编辑

摘要: Load order: mscoree.dll -> mscorwks.dll -> mscorlib.dll -> mscorjit.dll Sample Code: 阅读全文

posted @ 2009-04-11 09:21 饭后爱 阅读(458) 评论(0) 推荐(0) 编辑

摘要: CLR中执行的托管代码分为Jitted 代码和ngened代码。区Jitted代码是动态编译生成的而ngened代码是预编译生成的。本文将讲述使用Windbg在这两种不同的代码中设置断点的方法。本文将使用如下的例子进行说明: using System; public class Test { public static void Main() { Console.WriteLine("Test"); } } 编译上面的代码生成test.exe 阅读全文

posted @ 2009-04-11 00:03 饭后爱 阅读(1763) 评论(0) 推荐(0) 编辑

2009年4月5日

摘要: 阅读全文

posted @ 2009-04-05 22:22 饭后爱 阅读(292) 评论(0) 推荐(0) 编辑

摘要: ASP.NET是一个非常强大的构建Web应用的平台,它提供了极大的灵活性和能力以致于可以用它来构建所有类型的Web应用。 绝大多数的人只熟悉高层的框架如: WebForms 和 WebServices --这些都在ASP.NET层次结构在最高层。 这篇文章的资料收集整理自各种微软公开的文档,通过比较 IIS5、IIS6、IIS7 这三代 IIS 对请求的处理过程, 让我们熟悉 ASP.NET的底层机制 并对请求(request)是怎么从Web服务器传送到ASP.NET运行时有所了解。通过对底层机制的了解,可以让我们对 ASP.net 有更深的理解。 阅读全文

posted @ 2009-04-05 22:11 饭后爱 阅读(322) 评论(0) 推荐(0) 编辑

摘要: Side-by-side execution is the ability to install multiple versions of code so that an application can choose which version of the common language runtime or of a component it uses. Subsequent installations of other versions of the runtime, an application, or a component will not affect applications already installed. This section describes side-by-side execution, how the runtime determines which version of the .NET Framework assemblies to load, and how to design software to take advantage of 阅读全文

posted @ 2009-04-05 14:29 饭后爱 阅读(309) 评论(0) 推荐(0) 编辑

摘要: This section provides conceptual overviews of the key features of the .NET Framework, including the common language runtime, the .NET Framework class library, and cross-language interoperability. In This Section .NET Framework Conceptual Overview Introduces the .NET Framework architecture and its components. .NET Framework 3.5 Architecture Explains the relationship between the .NET Framework version 3.5 and earlier versions and service packs. Common Language Runtime 阅读全文

posted @ 2009-04-05 10:29 饭后爱 阅读(240) 评论(0) 推荐(0) 编辑

摘要: The architecture of the .NET Framework version 3.5 and 3.5 Service Pack 1 (SP1) builds upon the earlier versions of the .NET Framework. .NET Framework Versions The following table lists the versions of the .NET Framework that are included in the .NET Framework 3.5 and 3.5 SP1. There is no need to install any of the previous service packs if you installed the .NET Framework 3.5 or 3.5 SP1 because they are already included. 阅读全文

posted @ 2009-04-05 08:32 饭后爱 阅读(388) 评论(0) 推荐(0) 编辑

摘要: The Microsoft® .NET Framework introduces several new features aimed at simplifying application deployment and solving DLL Hell. Both end users and developers are familiar with the versioning and deployment issues that can arise with today's component-based systems. For example, virtually every end user has installed a new application on their machine, only to find that an existing application mysteriously stops working. Most developers have also spent time with Regedit, trying to keep all the ne 阅读全文

posted @ 2009-04-05 08:26 饭后爱 阅读(401) 评论(0) 推荐(0) 编辑

2009年3月28日

摘要: ASSOC 显示或修改文件扩展名关联。 ATTRIB 显示或更改文件属性。 BREAK 设置或清除扩展式 CTRL+C 检查。 BCDEDIT 设置启动数据库中的属性以控制启动加载。 CACLS 显示或修改文件的访问控制列表(ACL)。 CALL 从另一个批处理程序调用这一个。 CD 显示当前目录的名称或将其更改。 CHCP 显示或设置活动代码页数。 CHDIR 显示当前目录的名称或将其更改。 CHKDSK 检查磁盘并显示状态报告。 CHKNTFS 显示或修改启动时间磁盘检查。 CLS 清除屏幕。 CMD 打开另一个 Windows 命令解释程序窗口。 COLOR 设置默认控制台前景和背景颜色。 COMP 比较两个或两套文件的内容。 COMPACT 显示或更改 NTFS 分区上文件的压缩。 CONVERT 将 FAT 卷转换成 阅读全文

posted @ 2009-03-28 20:45 饭后爱 阅读(1224) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 下一页