<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/computerfox" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/computerfox" type="application/rss+xml"></fs:self_link><lastBuildDate>Sun, 08 Mar 2009 12:34:00 GMT</lastBuildDate><title>阿捷 的专栏</title><description>网络、C#、软件工程 同步推进中。。。</description><link>http://blog.csdn.net/computerfox/</link><item><title>托管模块的组成部分</title><link>http://blog.csdn.net/computerfox/archive/2009/03/08/3968631.aspx</link><wfw:comment>http://blog.csdn.net/computerfox/comments/3968631.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/computerfox/comments/commentRss/3968631.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3968631</trackback:ping><description>我们可以使用任何支持CLR的编程语言来创建源代码文件。然后使用相应的编译器来做语法检查和源代码分析。但是不管使用的是何种编译器，最后生成的结果都是一个托管模块(Managed Module)。托管模块是一个需要CLR才能执行的标准WindowsPE(Portable executable，简称PE)文件。  下表描述了一个托管模块的各个组成部分                       组成部分                        描述                                  PE表头                        标准的Windows PE文件表头，类似于通用对象文件格式(Common Object File Format，简称COFF)表头。该表头指出了文件的类型：GUI(图像用户界面)，CUI(控制台用户界面)，或者DLL(译注：DLL在以前表示Windows中的动态链接库文件，即Dynamic Link Library，它是以动态链接的方式提供的一组函数库。在.net平台中，由于和传统的动态链接库文件有着相同的扩展名.dll&lt;img src =&quot;http://blog.csdn.net/computerfox/aggbug/3968631.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 08 Mar 2009 20:34:00 +0800</pubDate><author>anders</author><comments>http://blog.csdn.net/computerfox/archive/2009/03/08/3968631.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/computerfox/archive/2009/03/08/3968631.aspx</guid><dc:creator>anders</dc:creator></item><item><title>如何遍历Windows的事件日志</title><link>http://blog.csdn.net/computerfox/archive/2008/02/08/2086973.aspx</link><wfw:comment>http://blog.csdn.net/computerfox/comments/2086973.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/computerfox/comments/commentRss/2086973.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2086973</trackback:ping><description>我们知道可以通过.Net Framework提供的EventLog类来写入Windows事件日志，方法很简单，首先要先创建EventLog对象，这样才能与Windows事件日志进行交互，可以在创建时，指定日志类别，例如下面的语句将创建一个与“应用程序”日志关联的EventLog对象： EventLog browserLog = new EventLog(&quot;Application&quot;); 接下来，你可以筛选以下自己感兴趣的日志信息，方法很简单，通过指定日志的源来做到： browserLog.Source = g_SelfServiceAppName;  如果要遍历相同源的所有日志信息，可以使用EventLogEntry对象，该对象代表一条日志信息，我们可以这样遍历：  foreach(EventLogEntry logEntry in browserLog.Entries){     ......  }    最后我们可以写入日志信息：  browserLog.WriteEntry(&quot;message&quot;, EventLogEntryType.Informatio&lt;img src =&quot;http://blog.csdn.net/computerfox/aggbug/2086973.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 09 Feb 2008 06:36:00 +0800</pubDate><author>anders</author><comments>http://blog.csdn.net/computerfox/archive/2008/02/08/2086973.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/computerfox/archive/2008/02/08/2086973.aspx</guid><dc:creator>anders</dc:creator></item><item><title>如何设置用windows live writer写CSDN的博客？</title><link>http://blog.csdn.net/computerfox/archive/2008/02/08/2086899.aspx</link><wfw:comment>http://blog.csdn.net/computerfox/comments/2086899.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/computerfox/comments/commentRss/2086899.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2086899</trackback:ping><description>一、CSDN的博客如何设置1、在安装的时候，或者增加博客账户的时候，输入自己博客的URL和账号、密码。如：   　　URL为：http://blog.csdn.net/computerfox/　　账号为：computerfox　　密码：******   2、选择日志提供程序：   　　从“日志提供程序类型”下拉框中选择：Metaweblog   API   　　在日志的远程发布URL里输入:        http://blog.csdn.net/computerfox/services/metablogapi.aspx       这里注意把 &quot;computerfox&quot;换成你自己的用户名 然后点击下一步完成即可。 感谢CSDN的mosesgi提供帮助！&lt;img src =&quot;http://blog.csdn.net/computerfox/aggbug/2086899.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 09 Feb 2008 04:03:00 +0800</pubDate><author>anders</author><comments>http://blog.csdn.net/computerfox/archive/2008/02/08/2086899.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/computerfox/archive/2008/02/08/2086899.aspx</guid><dc:creator>anders</dc:creator></item><item><title>命令行的知识</title><link>http://blog.csdn.net/computerfox/archive/2006/06/08/781232.aspx</link><wfw:comment>http://blog.csdn.net/computerfox/comments/781232.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/computerfox/comments/commentRss/781232.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=781232</trackback:ping><description>c#编程心得&lt;img src =&quot;http://blog.csdn.net/computerfox/aggbug/781232.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 09 Jun 2006 06:54:00 +0800</pubDate><author>anders</author><comments>http://blog.csdn.net/computerfox/archive/2006/06/08/781232.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/computerfox/archive/2006/06/08/781232.aspx</guid><dc:creator>anders</dc:creator></item><item><title>关于委托</title><link>http://blog.csdn.net/computerfox/archive/2006/06/08/781228.aspx</link><wfw:comment>http://blog.csdn.net/computerfox/comments/781228.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/computerfox/comments/commentRss/781228.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=781228</trackback:ping><description>c#编程心得&lt;img src =&quot;http://blog.csdn.net/computerfox/aggbug/781228.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 09 Jun 2006 06:53:00 +0800</pubDate><author>anders</author><comments>http://blog.csdn.net/computerfox/archive/2006/06/08/781228.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/computerfox/archive/2006/06/08/781228.aspx</guid><dc:creator>anders</dc:creator></item><item><title>枚举系统字体</title><link>http://blog.csdn.net/computerfox/archive/2006/06/08/781224.aspx</link><wfw:comment>http://blog.csdn.net/computerfox/comments/781224.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/computerfox/comments/commentRss/781224.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=781224</trackback:ping><description>C#编程心得&lt;img src =&quot;http://blog.csdn.net/computerfox/aggbug/781224.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 09 Jun 2006 06:52:00 +0800</pubDate><author>anders</author><comments>http://blog.csdn.net/computerfox/archive/2006/06/08/781224.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/computerfox/archive/2006/06/08/781224.aspx</guid><dc:creator>anders</dc:creator></item><item><title>如何判断某个窗口已经成为活动窗口？</title><link>http://blog.csdn.net/computerfox/archive/2006/06/08/781218.aspx</link><wfw:comment>http://blog.csdn.net/computerfox/comments/781218.aspx</wfw:comment><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/computerfox/comments/commentRss/781218.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=781218</trackback:ping><description>c#编程心得&lt;img src =&quot;http://blog.csdn.net/computerfox/aggbug/781218.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 09 Jun 2006 06:48:00 +0800</pubDate><author>anders</author><comments>http://blog.csdn.net/computerfox/archive/2006/06/08/781218.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/computerfox/archive/2006/06/08/781218.aspx</guid><dc:creator>anders</dc:creator></item><item><title>关于给精英松绑的讨论...</title><link>http://blog.csdn.net/computerfox/archive/2006/06/08/780979.aspx</link><wfw:comment>http://blog.csdn.net/computerfox/comments/780979.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/computerfox/comments/commentRss/780979.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=780979</trackback:ping><description>我与阿海同志在精英问题上的一些讨论...&lt;img src =&quot;http://blog.csdn.net/computerfox/aggbug/780979.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 09 Jun 2006 04:31:00 +0800</pubDate><author>anders</author><comments>http://blog.csdn.net/computerfox/archive/2006/06/08/780979.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/computerfox/archive/2006/06/08/780979.aspx</guid><dc:creator>anders</dc:creator></item><item><title>破解庞加莱猜想--中国人干的!</title><link>http://blog.csdn.net/computerfox/archive/2006/06/08/780962.aspx</link><wfw:comment>http://blog.csdn.net/computerfox/comments/780962.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/computerfox/comments/commentRss/780962.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=780962</trackback:ping><description>中国人应该感到骄傲！&lt;img src =&quot;http://blog.csdn.net/computerfox/aggbug/780962.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 09 Jun 2006 04:17:00 +0800</pubDate><author>anders</author><comments>http://blog.csdn.net/computerfox/archive/2006/06/08/780962.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/computerfox/archive/2006/06/08/780962.aspx</guid><dc:creator>anders</dc:creator></item></channel></rss>