<?xml version="1.0" encoding="gb2312"?>
	<rss version="2.0">
		<channel>
		<title><![CDATA[锋锋的BLOG]]></title>
		<description><![CDATA[]]></description>
		<link>http://www.cublog.cn/u/4222/</link>
		<language>zh-cn</language>
		<generator>www.cublog.cn</generator>
		<copyright>Copyright 2010 ChinaUnix.Net All Rights Reserved</copyright>
		<pubDate>Mon, 06 Sep 2010 02:40:15 GMT</pubDate>
	
		<item>
			<title><![CDATA[[转载]C# 2.0 杂项技术，以及C#语言的未来发展]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=67964]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 14 Jan 2006 14:33:01 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[<DIV>属性访问器保护级别的变化</DIV>
<DIV>C# 2.0 允许我们对一个属性的get和set访问器使用不同的访问级别修饰符：</DIV>
<DIV>class Customer<BR>{<BR>&nbsp;&nbsp; private string name;<BR>&nbsp;&nbsp; ...<BR>&nbsp;&nbsp; public string Name<BR>&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; get{return this.name;}<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; internal set(this.name=value;}<BR>&nbsp;&nbsp; }<BR>&nbsp;&nbsp; ...<BR>}</DIV>
<DIV>一些注意点</DIV>
<DIV>属性访问器（get或set）上应用的访问修饰符必须“小……  ]]></description>
		</item>	
			<item>
			<title><![CDATA[[转载]C# 2.0 匿名方法、迭代器]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=67963]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 14 Jan 2006 14:31:55 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[<DIV>匿名方法的由来</DIV>
<DIV>没有匿名方法的时候（C# 1.0）</DIV>
<DIV>addButton.Click += new EventHandler(AddClick);</DIV>
<DIV>void AddClick(object sender,EventArgs e)<BR>{<BR>&nbsp;&nbsp; listBox.Items.Add(textBox.Text);<BR>}</DIV>
<DIV>有了匿名方法之后（C# 2.0）</DIV>
<DIV>addButton.Click += delegate<BR>{<BR>&nbsp;&nbsp; listBox.Items.Add(textBox.Text);<BR>}</DIV>
<DIV>匿名方法简介</DIV>
<DIV>匿名方法允许我们以一种“内联”的方式来编写方法代码，将代码直接与委托实例相关联，从而使得委托实……  ]]></description>
		</item>	
			<item>
			<title><![CDATA[[转载]C# 2.0 局部类型、空属类型、静态类]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=67962]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 14 Jan 2006 14:30:46 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[<DIV>局部类型</DIV>
<DIV>局部类型的引入</DIV>
<DIV>没有局部类型的时候（C# 1.0）</DIV>
<DIV>class App<BR>{<BR>&nbsp;&nbsp; public void Foo(){...}<BR>&nbsp;&nbsp; ...<BR>&nbsp;&nbsp; public void Bar(){...}<BR>&nbsp;&nbsp; ...<BR>}</DIV>
<DIV>有了局部类型之后（C# 2.0）</DIV>
<DIV>partial class App<BR>{<BR>&nbsp;&nbsp; public void Foo()<BR>&nbsp;&nbsp; {...}<BR>&nbsp;&nbsp; ...<BR>}<BR>partial class App<BR>{<BR>&nbsp;&nbsp; public void Bar()<BR>&nbsp;&nbsp; {...}<BR>&nbsp;&nbsp; ...<BR>}</DIV>……  ]]></description>
		</item>	
			<item>
			<title><![CDATA[[转载]C# 2.0 泛型编程]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=67961]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 14 Jan 2006 14:29:00 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[<DIV>C#泛型演示</DIV>
<DIV>class Stack&lt;T&gt;<BR>{<BR>&nbsp;&nbsp; private T[] store;<BR>&nbsp;&nbsp; private int size<BR>&nbsp;&nbsp; public Stack()<BR>&nbsp; {<BR>&nbsp;&nbsp;&nbsp; store = new T[10];<BR>&nbsp;&nbsp;&nbsp; size = 0;<BR>&nbsp;}</DIV>
<DIV>&nbsp;public void Push(T x)<BR>&nbsp;{<BR>&nbsp;&nbsp;&nbsp; store[size++] = x;<BR>&nbsp;}</DIV>
<DIV>&nbsp;public void T Pop()<BR>&nbsp;{<BR>&nbsp;&nbsp;&nbsp; return store[--size];<BR>&nbsp;}<BR>}</DIV>
<DIV>Stack&lt;int&gt; x = new St……  ]]></description>
		</item>	
			<item>
			<title><![CDATA[[转帖]选择JSF不选Struts的十大理由]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=53019]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 22 Oct 2005 13:07:08 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[我的一个客户不知道该选用St  ]]></description>
		</item>	
			<item>
			<title><![CDATA[使用设计模式改善程序结构（二）]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=53064]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 22 Oct 2005 15:54:07 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[2005-10-18 23:34:00 文/孙鸣 出处：IBM在本系列的第一篇文章中，描述了如何通过设计模式来指导我们的程序重构过程，并且着重介绍了设计模式意图、动机的重要性。在本文中我们将继续上篇文章进行讨论，这次主要着重于设计模式的适用性，对于设计模式适用性的掌握有助于从另一个不同的方面来判断一个设计模式是否真正适用于我们的实际问题，从而做出明智的选择。   ]]></description>
		</item>	
			<item>
			<title><![CDATA[使用设计模式改善程序结构（一）]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=53059]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 22 Oct 2005 15:20:30 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[<div id="art_center">2005-10-18 23:29:00 文/孙鸣 出处：IBM</div><div>设计模式是对特定问题经过无数次经验总结后提出的能够解决它的优雅的方案。但是，如果想要真正使设计模式发挥最大作用，仅仅知道设计模式是什么，以及它是如何实现的是很不够的，因为那样就不能使你对于设计模式有真正的理解，也就不能够在自己的设计中正确、恰当的使用设计模式。本文试图从另一个角度（设计模式的意图、动机）来看待设计模式，通过这种新的思路，设计模式会变得非常贴近你的设计过程，并且能够指导、简化你的设计，最终将会导出一个优秀的解决方案……  ]]></description>
		</item>	
			<item>
			<title><![CDATA[天平蒙受了多少不白之冤]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=52487]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Tue, 18 Oct 2005 14:33:14 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[天平爱看美女帅哥，但并不是爱美女帅哥，只要外形整体上部丢脸面就好。但是男的一定要有远见有前途，有涵养，有能力，女的一定要不低俗   ]]></description>
		</item>	
			<item>
			<title><![CDATA[office XML的交互性]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=50980]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 08 Oct 2005 17:10:47 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[<div class="overview"><p>Simon Guest</p><p>这是一系列文章中的第一篇，旨在说明与微软Office XML Reference Schemas (WordProcessingML 和 SpreadSheetML)的交互性。 这里， 我们将来分析如何使BEA WebLogic 和 IBM WebSphere (运行于 微软 Windows 或 Linux环境下) 被用来生成服务器端文档，这些文档可以被那些在系统上装有微软Office Word 2003的用户所读取。</p></div><p><a href="http://www.microsoft.com/china/MSDN/library/architecture/InterOPofXML.mspx">http://www.microsoft.com/china/MSDN/library/architecture/InterOP……  ]]></description>
		</item>	
			<item>
			<title><![CDATA[[收藏]用Java实现PDF报表]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=50979]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 08 Oct 2005 17:07:32 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[<font face="宋体" size="2">一、前言 </font><p /><p>　　在企业的信息系统中，报表处理一直占比较重要的作用，本文将介绍一种生成PDF报表的Java组件--iText。通过在服务器端使用Jsp或JavaBean生成PDF报表，客户端采用超级连接显示或下载得到生成的报表，这样就很好的解决了B/S系统的报表处理问题。</p><p>二、iText简介<p>　　iText是著名的开放源码的站点sourceforge一个项目，是用于生成PDF文档的一个java类库。通过iText不仅可以生成PDF或rtf的文档，而且可以将XML、Html文件转化为PDF文件。</p><p>　　iText的安装非常方便，在<a hr……  ]]></description>
		</item>	
			<item>
			<title><![CDATA[今天是我28岁的生日]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=49183]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 24 Sep 2005 16:32:49 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[祝自己生日快乐!28岁了该认真思考人生的一些深层问题了更应该多一份责任感无论社会,国家,单位,还有家庭....  ]]></description>
		</item>	
			<item>
			<title><![CDATA[很久没写东西了.]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=49181]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sat, 24 Sep 2005 16:23:21 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[最近用J2EE做了一个项目(主要是用JSF作为w  ]]></description>
		</item>	
			<item>
			<title><![CDATA[爱和喜欢的区别]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=43859]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sun, 21 Aug 2005 08:35:09 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[女孩子的心思,我还真不懂!&nbsp; 看到网上一篇强文....  ]]></description>
		</item>	
			<item>
			<title><![CDATA[[原创]数据结构--有向图的实现(with C#)初稿]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=25629]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Thu, 12 May 2005 15:51:35 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[数据结构有向图的实现(with C#)  ]]></description>
		</item>	
			<item>
			<title><![CDATA[准备手工实现一个轻量级的工作流管理系统]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=25448]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Wed, 11 May 2005 13:48:36 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[JAVA下的工作流管理系统开源项目用箩筐来装，.NET下的搜遍了全球互联网的每一个角落也没有！太不公平了~  ]]></description>
		</item>	
			<item>
			<title><![CDATA[NHibernate中使用自己的数据库连接]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=23001]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sun, 24 Apr 2005 07:43:15 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[如果为同一类形的DBMS，如MS&nbsp;SQLs  ]]></description>
		</item>	
			<item>
			<title><![CDATA[低级错误真不该犯！]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=14391]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Sun, 06 Mar 2005 14:13:07 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[<p>&nbsp;if((CB.Checked=true)&amp;&amp;(null==cuRF))</p><p>这样的代码，C#编译器居然不会报错！！！ft........<br /><br /></p><p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;以后还是这样写安全点：</p><p>if(CB.Checked==true）</p><p>{</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (null==cuRF)</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { </p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &n……  ]]></description>
		</item>	
			<item>
			<title><![CDATA[Module，Function 这两个类不要在开发中定义！]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=12926]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Tue, 22 Feb 2005 16:36:50 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[今天给Module，Function 这两个类害惨了！<p><p><span> </span><font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif "><b><font face="Verdana">说明: </font></b>执行当前 Web 请求期间，出现未处理的异常。请检查堆栈跟踪信息，以了解有关该错误以及代码中导致错误的出处的详细信息。 <br /><br /><b><font face="Verdana">异常详细信息: </font></b>System.Data.SqlClient.SqlException: 在关键字 'Function' 附近有语法错误。<br /><br /><b><font face="Verdana">源错误:</font></b> <br /><br /><table width="100%……  ]]></description>
		</item>	
			<item>
			<title><![CDATA[[收藏]C++编程人员最容易犯的十个C#错误]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=12260]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Wed, 16 Feb 2005 11:31:16 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[尽管C#与C++在语法上的变化是很小的，几乎不会对我们有什么影响，但有些变化却足以使一些粗心的C++编程人员时刻铭记在心。  ]]></description>
		</item>	
			<item>
			<title><![CDATA[反射用多了，真会上瘾。]]></title>
			<link><![CDATA[http://blog.chinaunix.net/u/4222/showart.php?id=12259]]></link>
			<author></author>
			<guid></guid>
			<category></category>
			<pubDate>Wed, 16 Feb 2005 10:44:59 GMT</pubDate>
			<comments></comments>
			<description><![CDATA[C#里的反射机制真很好用，以前这样的代码写着真是晕：  ]]></description>
		</item>	
			</channel>
	</rss>
