<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="rss.xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>本杰.NET</title>
    <link>http://www.beingnet.com/</link>
    <description>Latest 20 threads</description>
    <copyright>Copyright (c) 本杰.NET</copyright>
    <generator>Discuz!NT</generator>
    <pubDate>Tue, 07 Sep 2010 10:27:32 GMT</pubDate>
    <ttl>60</ttl>
    <item>
      <title>C#类的分类（静态类、实例类、嵌套类、结构、简单的抽象类、简单的密封类）</title>
    <description><![CDATA[静态类

--------------------------------------------------------------------------------

     静态类就是在class关键字前加入了static关键字，基本语法是static  Class  ClassName{} 。

静态类有几个特点：

1.静态类只能包括静态成员

2.类本身无法被实]]></description>
      <link>http://www.beingnet.com/showtopic-1715.aspx</link>
      <category>C#</category>
      <author>guduey</author>
      <pubDate>Mon, 06 Sep 2010 15:50:00 GMT</pubDate>
    </item>
    <item>
      <title>关于struct在class中的调用问题??</title>
    <description><![CDATA[public class Test
{
     public struct Obj
     {
              public static string Str=&amp;quot;str&amp;quot;;
     }
}

为什么不用实例化test就可以调用Test中的struct
如以下形式：
Test.Obj.Str]]></description>
      <link>http://www.beingnet.com/showtopic-1714.aspx</link>
      <category>C#</category>
      <author>guduey</author>
      <pubDate>Sun, 05 Sep 2010 08:45:00 GMT</pubDate>
    </item>
    <item>
      <title>OO的特点就是，抓典型</title>
    <description><![CDATA[通过抓典型，形成类型。。

CodeSmith中，我们也要抓典型的。。最初做的那个典型性版本，就应该是 原型测试 。。]]></description>
      <link>http://www.beingnet.com/showtopic-1713.aspx</link>
      <category>C#</category>
      <author>shenyoujia</author>
      <pubDate>Sat, 04 Sep 2010 23:56:00 GMT</pubDate>
    </item>
    <item>
      <title>edmx处理存储过程，有第三方的收费工具</title>
    <description><![CDATA[357]]></description>
      <link>http://www.beingnet.com/showtopic-1712.aspx</link>
      <category>UML</category>
      <author>shenyoujia</author>
      <pubDate>Sat, 04 Sep 2010 23:20:00 GMT</pubDate>
    </item>
    <item>
      <title>edmx处理存储过程，有第三方的收费工具</title>
    <description><![CDATA[可惜是要收费啊。。否则用来转换 stored procedure，就能解决我们项目中不能使用ef对付存储过程的遗憾了。。

356]]></description>
      <link>http://www.beingnet.com/showtopic-1711.aspx</link>
      <category>UML</category>
      <author>shenyoujia</author>
      <pubDate>Sat, 04 Sep 2010 23:19:00 GMT</pubDate>
    </item>
    <item>
      <title>再看OA项目第三天笔记</title>
    <description><![CDATA[NetTier        

        可以直接使用
        如果已经现成的架构,反向根据codesmith来生成我们自己的代码

流行的数据访问层框架
        Data Access Application Block
        entlib 4.1
        SubSonic
        Nhibernate
        Typ]]></description>
      <link>http://www.beingnet.com/showtopic-1710.aspx</link>
      <category>DesignPattern</category>
      <author>shenyoujia</author>
      <pubDate>Sat, 04 Sep 2010 22:56:00 GMT</pubDate>
    </item>
    <item>
      <title>SmtpClient发邮件的BUG？</title>
    <description><![CDATA[用SmtpClient类发送邮件，如果接收人邮箱地址有无效的地址，则用同步发送可以发送出去，别的接收人能收到邮件。但是用异步发送就所有人都收不到邮件，不如为何？
SmtpClient _SmtpClient = new SmtpClient();
_SmtpClient.Host = “邮箱服务器”;
_SmtpClient.Credentials = new NetworkCredenti]]></description>
      <link>http://www.beingnet.com/showtopic-1709.aspx</link>
      <category>C#</category>
      <author>jintianhu</author>
      <pubDate>Sat, 04 Sep 2010 14:07:00 GMT</pubDate>
    </item>
    <item>
      <title>班级照片2010-09-03欢迎新同学</title>
    <description><![CDATA[全家福
355
三位特写
351
三位特写
354
今天的主角:欢迎新同学!
352
353]]></description>
      <link>http://www.beingnet.com/showtopic-1708.aspx</link>
      <category>[本杰.NET]1002班[已开课]</category>
      <author>张波老师</author>
      <pubDate>Fri, 03 Sep 2010 18:46:00 GMT</pubDate>
    </item>
    <item>
      <title>一直不太重视UML</title>
    <description><![CDATA[其实，UML不但可以在编码前对编码有个很好的规划，而且在编码后，又是回归测试，单元测试和集成测试的最好的文档。。

UML，确实是用途广泛。。]]></description>
      <link>http://www.beingnet.com/showtopic-1707.aspx</link>
      <category>UML</category>
      <author>shenyoujia</author>
      <pubDate>Mon, 30 Aug 2010 11:10:00 GMT</pubDate>
    </item>
    <item>
      <title>代码规范从自我做起</title>
    <description><![CDATA[各类命名(文件名、函数名、变量名等)、格式是否按编码规范进行?
 
主要函数是否填写注释?注释是否清楚，简洁，并与编码规范保持一致性。
 
每个函数的代码行数是否控制在50行以内？
 
源程序头部的文件说明和修改说明是否按照编码规范要求?
 
对于已发布的源代码的修改在修改处是否写了修改标识?
 
是否进行单元测试?
 
所有的功能需求与非功能需求是否都体现在了实现中？
]]></description>
      <link>http://www.beingnet.com/showtopic-1706.aspx</link>
      <category>C#</category>
      <author>shenyoujia</author>
      <pubDate>Fri, 27 Aug 2010 10:35:00 GMT</pubDate>
    </item>
    <item>
      <title>班级照片2010-08-25花之盟项目原型定稿</title>
    <description><![CDATA[337

336

338

339

340

341

342

343

344

345

346

347

348

349]]></description>
      <link>http://www.beingnet.com/showtopic-1705.aspx</link>
      <category>[本杰.NET]1001班</category>
      <author>张波老师</author>
      <pubDate>Wed, 25 Aug 2010 21:56:00 GMT</pubDate>
    </item>
    <item>
      <title>这个代码一开始以为会递归调用</title>
    <description><![CDATA[ protected virtual bool ProcessConfiguration()
        {
            bool bResult = false;
            foreach (var aProcessor in processorList)
            {
                bResult = aProcessor]]></description>
      <link>http://www.beingnet.com/showtopic-1704.aspx</link>
      <category>C#</category>
      <author>shenyoujia</author>
      <pubDate>Wed, 25 Aug 2010 21:12:00 GMT</pubDate>
    </item>
    <item>
      <title>[试听章节]项目-花之盟-Day03_花之盟-012讲-花之盟-012讲-增讲-把原型生成为CHM文档</title>
    <description><![CDATA[http://u.115.com/file/t6174bde1d
FlowerShopDay04.iso]]></description>
      <link>http://www.beingnet.com/showtopic-1703.aspx</link>
      <category>[本杰.NET]1001班</category>
      <author>张波老师</author>
      <pubDate>Wed, 25 Aug 2010 19:07:00 GMT</pubDate>
    </item>
    <item>
      <title>设计的枯燥和有趣——书摘</title>
    <description><![CDATA[设计是一个有趣的过程，事实上，笔者认为开发人员也可以把设计当成另外一种撰写程序的方式，只是在设计阶段是以设计整个应用程序架构、应用程序需要解决的事务、应用程序提供的功能以及影响应用程序的元素而不是以细微的程序代码和API作为思考中心的。试着以更高层次的抽象方式来思考设计，熟悉UML和UML的语言元素来进行设计工作，那么也许读者会慢慢发现其中的乐趣。

设计也不是一次就可以完成的，需要经过多次的]]></description>
      <link>http://www.beingnet.com/showtopic-1702.aspx</link>
      <category>UML</category>
      <author>shenyoujia</author>
      <pubDate>Wed, 25 Aug 2010 17:42:00 GMT</pubDate>
    </item>
    <item>
      <title>班级照片2010-08-21(陈昊同学回西安送行)</title>
    <description><![CDATA[陈昊同学今天回西安,
祝你一路顺风!

322
天气不错,心情不错
323
轧钢机在辛苦炒菜(专业水准)
324
小鸡炖蘑菇
325
同学们在耐心等候
326
有荤有素
327
韭黄炒蛋,色香俱佳
328
鲜美可口的鸡汤
329
......]]></description>
      <link>http://www.beingnet.com/showtopic-1701.aspx</link>
      <category>[本杰.NET]1001班</category>
      <author>张波老师</author>
      <pubDate>Sat, 21 Aug 2010 00:59:00 GMT</pubDate>
    </item>
    <item>
      <title>班级照片2010-08-19</title>
    <description><![CDATA[265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293......]]></description>
      <link>http://www.beingnet.com/showtopic-1698.aspx</link>
      <category>[本杰.NET]1001班</category>
      <author>张波老师</author>
      <pubDate>Fri, 20 Aug 2010 00:13:00 GMT</pubDate>
    </item>
    <item>
      <title>再论代码生成技术</title>
    <description><![CDATA[在写代码的时候，总是有些代码（比如创建List&amp;lt;Usage&amp;gt;,List&amp;lt;Group&amp;gt;,List&amp;lt;Item&amp;gt;这样的类似结构）是非常相似的。根据老师用代码生成的课堂演示来说，完全可以只写一个List&amp;lt;Usage&amp;gt;类，将此作为原型。。别的类，都用工具代码生成。

对付结构化的代码，是代码生成工具的最佳用武之地。一定要善待之。]]></description>
      <link>http://www.beingnet.com/showtopic-1697.aspx</link>
      <category>.NET Framework</category>
      <author>shenyoujia</author>
      <pubDate>Wed, 18 Aug 2010 14:25:00 GMT</pubDate>
    </item>
    <item>
      <title>班级照片2010-08-17</title>
    <description><![CDATA[248
轧钢机和小鱼在设计原型
247
轧钢机和小鱼在设计原型
249
小鱼和小杨
250
小姚同学帅气和深沉的气质....
251
陈昊与小杨同学在讨论问题
252
轧钢机同学在课间抓紧时间择菜,辛苦了
253
陈昊与小杨同......]]></description>
      <link>http://www.beingnet.com/showtopic-1696.aspx</link>
      <category>[本杰.NET]1001班</category>
      <author>张波老师</author>
      <pubDate>Tue, 17 Aug 2010 22:30:00 GMT</pubDate>
    </item>
    <item>
      <title>运用范型技术重构后的代码</title>
    <description><![CDATA[玉不琢，不成器。批评与自我批评，会成为前进的动力。这个代码的味道，闻起来的感觉，要优雅很多了。    /// &amp;lt;summary&amp;gt;
    /// 模板方法的抽象基类
    /// 这里使用 范型类 以获得更高的通用性 Genaric and Extensible
    /// &amp;lt;/summary&amp;gt;
    /// &amp;lt;typeparam name=&amp;quot]]></description>
      <link>http://www.beingnet.com/showtopic-1695.aspx</link>
      <category>C#</category>
      <author>shenyoujia</author>
      <pubDate>Tue, 17 Aug 2010 13:06:00 GMT</pubDate>
    </item>
    <item>
      <title>闻到不好的代码味道</title>
    <description><![CDATA[有种吃饭无法下咽的感觉。。今天的午饭快要黄了。。

对于 范型 的掌握还是太差了。。看老师写代码没感觉，但自己写出来就有问题。。范型技术，可真的不是那么简单的说。。]]></description>
      <link>http://www.beingnet.com/showtopic-1694.aspx</link>
      <category>C#</category>
      <author>shenyoujia</author>
      <pubDate>Tue, 17 Aug 2010 12:00:00 GMT</pubDate>
    </item>
  </channel>
</rss>