<?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/younther" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/younther" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 29 Jul 2004 21:19:00 GMT</lastBuildDate><title>younther的专栏</title><link>http://blog.csdn.net/younther/</link><item><title>可扩展的SockBase设计和实现(3)</title><link>http://blog.csdn.net/younther/archive/2004/07/29/55840.aspx</link><wfw:comment>http://blog.csdn.net/younther/comments/55840.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/younther/comments/commentRss/55840.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=55840</trackback:ping><description>在前面的文章中,我们对于所有通过SockBase发送的消息都是直接通过嵌入式的字符串来完成的.比如”login”,”logout”,这样带来的一个问题就是如果不小心,写错一个字,在编译期是不能检查出来的.而且由于是直接内嵌在代码中的,和逻辑代码混在一起,不便于增加/修改消息.所以我们提出了使用自定义的消息命令类.&lt;img src =&quot;http://blog.csdn.net/younther/aggbug/55840.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 30 Jul 2004 05:19:00 +0800</pubDate><author>younther</author><comments>http://blog.csdn.net/younther/archive/2004/07/29/55840.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/younther/archive/2004/07/29/55840.aspx</guid><dc:creator>younther</dc:creator></item><item><title>可扩展的SockBase设计和实现(2)</title><link>http://blog.csdn.net/younther/archive/2004/07/29/55830.aspx</link><wfw:comment>http://blog.csdn.net/younther/comments/55830.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/younther/comments/commentRss/55830.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=55830</trackback:ping><description>在上一篇文章&gt;中,我们消息映射表是通过简单的Hashtable表来建立的.这样做,功能相对太简单,而且不便于扩展.而且Hashtable中的一些特性是我们不必要使用的.所以在这里,我们直接使用自定义的消息映射类(集合类CommandHandlerList和消息命令/处理函数类CommandHandler.)来建立消息映射表.&lt;img src =&quot;http://blog.csdn.net/younther/aggbug/55830.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 30 Jul 2004 05:11:00 +0800</pubDate><author>younther</author><comments>http://blog.csdn.net/younther/archive/2004/07/29/55830.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/younther/archive/2004/07/29/55830.aspx</guid><dc:creator>younther</dc:creator></item><item><title>可扩展的SockBase设计和实现(1)</title><link>http://blog.csdn.net/younther/archive/2004/07/29/55827.aspx</link><wfw:comment>http://blog.csdn.net/younther/comments/55827.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/younther/comments/commentRss/55827.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=55827</trackback:ping><description>System.Net 命名空间为当前网络上使用的多种协议提供了简单的编程接口，如果需要底层控制更多的编程而言，开发人员就需要使用System.Net.Sockets 命名空间了。System.Net.Sockets为需要严密控制网络访问的开发人员提供了 Windows Sockets (Winsock) 接口的托管实现。 但是Sockets编程既烦杂，又毫无可扩展性，需要开发人员自己控制消息的接受和发送以及处理，这些与业务逻辑有关的工作在编程之时就需要写入代码，一旦需求发生变化，又得改写Sockets的接受消息列表和处理。同时对于命令字符串的构造都需要底层的程序员去控制，不仅容易出错，而且不易改变。面对复杂多变的业务逻辑，这样的架构毫无可重用而言，同时给程序员提出了很高的要求，很大程度的工作量放在了做底层的重复性的劳动上。因此，为了提供一种易于扩展的Sockets编程架构，使得开发人员将注意力放在业务逻辑上，我们提出了设计可扩展的SockBase思路，同时实现了这个架构，经验表明，不仅解决了上述存在的问题，而且取得了非常好的效果。&lt;img src =&quot;http://blog.csdn.net/younther/aggbug/55827.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 30 Jul 2004 05:04:00 +0800</pubDate><author>younther</author><comments>http://blog.csdn.net/younther/archive/2004/07/29/55827.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/younther/archive/2004/07/29/55827.aspx</guid><dc:creator>younther</dc:creator></item><item><title>基于XML的配置文件访问接口设计和实现(3)</title><link>http://blog.csdn.net/younther/archive/2004/07/29/55825.aspx</link><wfw:comment>http://blog.csdn.net/younther/comments/55825.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/younther/comments/commentRss/55825.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=55825</trackback:ping><description>前面的两篇中,我们实现了XmlConfigReader和XmlConfigWriter的基本功能.由于XmlConfigReader的实现方式是每请求一次,就去解析配置文件一次,性能很低下.同时,为了更方便使用,我们增加一个ConfigurationSettings类,用来调用XmlConfigReader和XmlConfigWriter,使之用起来和System.Configuration中的类使用方式一样.

&lt;img src =&quot;http://blog.csdn.net/younther/aggbug/55825.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 30 Jul 2004 05:02:00 +0800</pubDate><author>younther</author><comments>http://blog.csdn.net/younther/archive/2004/07/29/55825.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/younther/archive/2004/07/29/55825.aspx</guid><dc:creator>younther</dc:creator></item><item><title>基于XML的配置文件访问接口设计和实现(2)</title><link>http://blog.csdn.net/younther/archive/2004/07/29/55824.aspx</link><wfw:comment>http://blog.csdn.net/younther/comments/55824.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/younther/comments/commentRss/55824.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=55824</trackback:ping><description>在进行程序开发过程中,经常要将一些程序设置/使用的信息储存起来.由于这些信息和程序的设置/使用相关,与程序有相当的独立性,所以不可能硬编码到程序中.在这个时候我们选择使用基于Xml的配置文件进行存储.Microsoft的.NET Framework提供了一系列的基于.Config文件的读取的类,如System.Configuration 命名空间提供的AppSettings等类.但是此命名空间提供的类只能对配置文件进行读取,不能进行设置.所以在这里,我们实现自己的一个基于Xml的配置文件的类XmlConfigReader/XmlConfigWriter.&lt;img src =&quot;http://blog.csdn.net/younther/aggbug/55824.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 30 Jul 2004 05:00:00 +0800</pubDate><author>younther</author><comments>http://blog.csdn.net/younther/archive/2004/07/29/55824.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/younther/archive/2004/07/29/55824.aspx</guid><dc:creator>younther</dc:creator></item><item><title>基于XML的配置文件访问接口设计和实现(1)</title><link>http://blog.csdn.net/younther/archive/2004/07/29/55823.aspx</link><wfw:comment>http://blog.csdn.net/younther/comments/55823.aspx</wfw:comment><slash:comments>3</slash:comments><wfw:commentRss>http://blog.csdn.net/younther/comments/commentRss/55823.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=55823</trackback:ping><description>在进行程序开发过程中,经常要将一些程序设置/使用的信息储存起来.由于这些信息和程序的设置/使用相关,与程序有相当的独立性,所以不可能硬编码到程序中.在这个时候我们选择使用基于Xml的配置文件进行存储.Microsoft的.NET Framework提供了一系列的基于.Config文件的读取的类,如System.Configuration 命名空间提供的AppSettings等类.但是此命名空间提供的类只能对配置文件进行读取,不能进行设置.所以在这里,我们实现自己的一个基于Xml的配置文件的类XmlConfigReader/XmlConfigWriter.

&lt;img src =&quot;http://blog.csdn.net/younther/aggbug/55823.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 30 Jul 2004 04:59:00 +0800</pubDate><author>younther</author><comments>http://blog.csdn.net/younther/archive/2004/07/29/55823.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/younther/archive/2004/07/29/55823.aspx</guid><dc:creator>younther</dc:creator></item><item><title>基于Sockets的编程中多任务同步的处理机制</title><link>http://blog.csdn.net/younther/archive/2004/07/29/55821.aspx</link><wfw:comment>http://blog.csdn.net/younther/comments/55821.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/younther/comments/commentRss/55821.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=55821</trackback:ping><description>基于Sockets的网络编程中，由于Sockets的通讯机制是往返的消息发送机制，因此使得单个任务而多个步骤（每个步骤也可以称作一个小的任务）的完成必定依赖于或者取决于前导的任务，因此编程处理的异步性就体现出来。而使得这些相互连贯的或者有联系的任务得以按照预定的定义流程去执行，很重要的一个关键问题就是如何去同步。采用何种同步的机制，实质上是采用什么样的技术路线去协调多个任务，当然任何一种机制实现同步并非适用于任何的场合，关键还是看需求。本文将在给出多任务同步的一些基本概念以及场景、问题，然后提出采用线程同步和委托的方式实现同步，并做出探讨，指出其存在问题和适用之处。&lt;img src =&quot;http://blog.csdn.net/younther/aggbug/55821.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 30 Jul 2004 04:57:00 +0800</pubDate><author>younther</author><comments>http://blog.csdn.net/younther/archive/2004/07/29/55821.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/younther/archive/2004/07/29/55821.aspx</guid><dc:creator>younther</dc:creator></item><item><title>GDI＋实现统计图表控件</title><link>http://blog.csdn.net/younther/archive/2004/07/29/55813.aspx</link><wfw:comment>http://blog.csdn.net/younther/comments/55813.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/younther/comments/commentRss/55813.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=55813</trackback:ping><description>本文是在概述GDI+的基础上，简单的介绍如何绘制数据图表，并在此基础上将其做成一个用户控件。便于读者及用户的使用。&lt;img src =&quot;http://blog.csdn.net/younther/aggbug/55813.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 30 Jul 2004 04:47:00 +0800</pubDate><author>younther</author><comments>http://blog.csdn.net/younther/archive/2004/07/29/55813.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/younther/archive/2004/07/29/55813.aspx</guid><dc:creator>younther</dc:creator></item><item><title>C#网络编程中的异常处理</title><link>http://blog.csdn.net/younther/archive/2004/07/29/55809.aspx</link><wfw:comment>http://blog.csdn.net/younther/comments/55809.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/younther/comments/commentRss/55809.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=55809</trackback:ping><description>异常的处理是为了保证程序尽量在不可预知的意外情况正常运行，同时异常的处理也是比较繁琐的过程。在网络编程中，不可预知的情况更多，使得开发者在编程时需要编写大量的异常处理代码，本文介绍了C#中一种简单的异常处理方法，减少了开发者的麻烦。本文假设读者对C#的网络编程和委托比较熟悉。
&lt;img src =&quot;http://blog.csdn.net/younther/aggbug/55809.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 30 Jul 2004 04:44:00 +0800</pubDate><author>younther</author><comments>http://blog.csdn.net/younther/archive/2004/07/29/55809.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/younther/archive/2004/07/29/55809.aspx</guid><dc:creator>younther</dc:creator></item><item><title>在.net安装程序部署SQL Server数据库</title><link>http://blog.csdn.net/younther/archive/2004/06/16/20185.aspx</link><wfw:comment>http://blog.csdn.net/younther/comments/20185.aspx</wfw:comment><slash:comments>3</slash:comments><wfw:commentRss>http://blog.csdn.net/younther/comments/commentRss/20185.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=20185</trackback:ping><description>&lt;img src =&quot;http://blog.csdn.net/younther/aggbug/20185.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 16 Jun 2004 23:21:00 +0800</pubDate><author>younther</author><comments>http://blog.csdn.net/younther/archive/2004/06/16/20185.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/younther/archive/2004/06/16/20185.aspx</guid><dc:creator>younther</dc:creator></item></channel></rss>