<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="rss.xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>本杰.NET - C#</title>
    <link>http://www.beingnet.com/showforum-7.aspx</link>
    <description>Latest 20 threads</description>
    <copyright>Copyright (c) 本杰.NET</copyright>
    <generator>Discuz!NT</generator>
    <pubDate>Tue, 07 Feb 2012 02:50:04 GMT</pubDate>
    <ttl>60</ttl>
    <item>
      <title>关于老师的OA项目</title>
    <description><![CDATA[OA项目已经有2年多的历史了，但每次回顾都感觉收获颇丰。

今天想聊的是，老师当年在讲解 BLL层与DAL层之间的数据交互的时候，埋下一句伏笔：这里在实现上有很多争议：Dataset、强类型Dataset、DataReader、标量值、XML或实体对象都可以用于传递数据。而我们在OA项目中实际传递的是实体，还为此封装了Entity层。

其实，老师确实是埋下了伏笔。在两年后的今天，在偶然读]]></description>
      <link>http://www.beingnet.com/showtopic-2621.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Fri, 20 Jan 2012 21:45:00 GMT</pubDate>
    </item>
    <item>
      <title>ef自动生成的sql</title>
    <description><![CDATA[SELECT 
. AS , 
. AS , 
. AS , 
. AS , 
. AS , 
. AS , 
. AS , 
. AS , 
. AS , 
. AS 
FROM ( SELECT 
        . AS , 
        . AS , 
        . AS , 
        . AS , 
        . AS , 
  ......]]></description>
      <link>http://www.beingnet.com/showtopic-2620.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Mon, 16 Jan 2012 21:44:00 GMT</pubDate>
    </item>
    <item>
      <title>多年没有想明白的问题，答疑仅在源码间</title>
    <description><![CDATA[一直不明白，为什么Java对字符串判等的处理与C#有这么大的差距。在Java中，一再强调用Equals来判等，而不能使用==；很明白，C#没有这样的强调（没有强调就说明，==和Equals在C#中是没区别的）。。原因的话，找了半天找到了，源码告知的很详尽。
public static bool operator ==(string a, string b)
{
    return Equa]]></description>
      <link>http://www.beingnet.com/showtopic-2616.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Mon, 05 Dec 2011 08:40:00 GMT</pubDate>
    </item>
    <item>
      <title>OO还是很博大精深的</title>
    <description><![CDATA[在老师这里学习近2年时光过去了。。难得可以写一个让自己满意的程序集，里面多少有些OO思想。。把类图保存下来，以便以后可以观摩。。]]></description>
      <link>http://www.beingnet.com/showtopic-2612.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Thu, 22 Sep 2011 15:43:00 GMT</pubDate>
    </item>
    <item>
      <title>VS2008下ime-code报错误而不是警告</title>
    <description><![CDATA[首先道歉，我没有找到JS的板块，因为我是在学C#的过程中接触到JS的！

我用VS2008写做一个练习，说是在&amp;lt;input style=&amp;quot;ime-mode:disable;&amp;quot; /&amp;gt;中加入ime-mode就可以实现只可以输入英文，不可以使用输入法的功能！

但是我的VS2008在这个ime-mode下面有红色波浪线，并且提示发现1个错误！而不是1个警告！
我]]></description>
      <link>http://www.beingnet.com/showtopic-2611.aspx</link>
      <author>andywater</author>
      <pubDate>Wed, 14 Sep 2011 12:22:00 GMT</pubDate>
    </item>
    <item>
      <title>编译器还是蛮智能的</title>
    <description><![CDATA[像下面两个最简单的类，编译器插入的 无参构造 会有什么不同么？ public abstract class MyClass
    {

    }

    public class MyClass2
    {

    }]]></description>
      <link>http://www.beingnet.com/showtopic-2610.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Fri, 02 Sep 2011 17:29:00 GMT</pubDate>
    </item>
    <item>
      <title>.net 框架为啥没有提供动态代理的类库</title>
    <description><![CDATA[JDK早就有动态代理类库了，为啥 .net fx 那么多版本还没有呢？是不是觉得这个功能华而不实，没有必要，呵呵]]></description>
      <link>http://www.beingnet.com/showtopic-2608.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Thu, 25 Aug 2011 09:07:00 GMT</pubDate>
    </item>
    <item>
      <title>发新主题</title>
    <description><![CDATA[不可以了吗？]]></description>
      <link>http://www.beingnet.com/showtopic-2604.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Fri, 08 Jul 2011 15:20:00 GMT</pubDate>
    </item>
    <item>
      <title>Pinvoke简介</title>
    <description><![CDATA[ class Program
    {
        
        public static extern bool Beep( int dwFreq,  int dwDuration);

        static void Main(string args)
        {
            //Beep(3000, 300);

          ......]]></description>
      <link>http://www.beingnet.com/showtopic-2603.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Fri, 08 Jul 2011 15:20:00 GMT</pubDate>
    </item>
    <item>
      <title>Pinvoke 简介</title>
    <description><![CDATA[ class Program
    {
        
        public static extern bool Beep( int dwFreq,  int dwDuration);

        static void Main(string args)
        {
            //Beep(3000, 300);

          ......]]></description>
      <link>http://www.beingnet.com/showtopic-2602.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Fri, 08 Jul 2011 15:19:00 GMT</pubDate>
    </item>
    <item>
      <title>公共语言运行库(CLR)开发系列课程(1)：Pinvoke 简介</title>
    <description><![CDATA[ class Program
    {
        
        public static extern bool Beep( int dwFreq,  int dwDuration);

        static void Main(string args)
        {
            //Beep(3000, 300);

          ......]]></description>
      <link>http://www.beingnet.com/showtopic-2601.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Fri, 08 Jul 2011 15:19:00 GMT</pubDate>
    </item>
    <item>
      <title>请推荐本实战书籍！</title>
    <description><![CDATA[学C#有段时间了，想通过实践加深印象，请各位大大推荐本书吧！]]></description>
      <link>http://www.beingnet.com/showtopic-2597.aspx</link>
      <author>hzdwf</author>
      <pubDate>Wed, 29 Jun 2011 16:42:00 GMT</pubDate>
    </item>
    <item>
      <title>我对爱情的了解</title>
    <description><![CDATA[对于当下，爱情尤如秋风吹后路边落的树叶一样不起眼：但有时却又像王冠上的宝石稀奇之物&amp;amp;hellip;&amp;amp;shy;
　　
　　也许每个人都会经历爱情，一次，两次， Formal dresses 甚至很多次。爱情不是登山，多一次，离山顶就近！&amp;amp;shy;
　　
　　爱情是两个人在一起的感觉，在一起的开心与放松，在一起时的坦率与坦白，爱情是真心人的天堂，而对于那些只知道满足自己]]></description>
      <link>http://www.beingnet.com/showtopic-2581.aspx</link>
      <author>lixiao32</author>
      <pubDate>Wed, 15 Jun 2011 16:31:00 GMT</pubDate>
    </item>
    <item>
      <title>感谢伤口</title>
    <description><![CDATA[草地上又一个蛹，被一个小孩子发现并带回了家，过了几天，蛹出现了一道小裂缝，里面的蝴蝶挣扎了好长时间，身子似乎被卡住了，一直出不来，天真的孩子看到蛹中的蝴蝶痛苦挣扎的样子十分不忍， rappelz rupees, 於是他便拿起剪刀把蛹壳剪开，帮助蝴蝶脱蛹而出，然而，由於这是蝴蝶没有经过破蛹前必须经过的痛苦挣扎，以致出壳后身躯臃肿，翅膀干裂，根本飞不起来,不久就死亡了,自然,这时蝴蝶的欢快,也就随着他]]></description>
      <link>http://www.beingnet.com/showtopic-2570.aspx</link>
      <author>relieveddl28</author>
      <pubDate>Tue, 31 May 2011 10:32:00 GMT</pubDate>
    </item>
    <item>
      <title>重温老师09年的视频</title>
    <description><![CDATA[公司里现在一个人都没有，全都旅游去了。。把老师091010（双十节）的视频拿出来，直接通过音箱放。。（平时只能用耳机的）。。爽。。]]></description>
      <link>http://www.beingnet.com/showtopic-2556.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Sat, 14 May 2011 20:09:00 GMT</pubDate>
    </item>
    <item>
      <title>反编译看看List的Contains方法</title>
    <description><![CDATA[public bool Contains(T item)
{
    if (item == null)
    {
        for (int j = 0; j &amp;lt; this._size; j++)
        {
            if (this._items == null)
            {
                return t......]]></description>
      <link>http://www.beingnet.com/showtopic-2555.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Fri, 13 May 2011 15:15:00 GMT</pubDate>
    </item>
    <item>
      <title>c#网络编程</title>
    <description><![CDATA[求c#网络编程视频 谢谢了哦]]></description>
      <link>http://www.beingnet.com/showtopic-2129.aspx</link>
      <author>itaix</author>
      <pubDate>Fri, 21 Jan 2011 14:59:00 GMT</pubDate>
    </item>
    <item>
      <title>let关键字的用法</title>
    <description><![CDATA[// studentQuery5 is an IEnumerable&amp;lt;string&amp;gt;
// This query returns those students whose
// first test score was higher than their
// average score.
var studentQuery5 =
    from student in stu......]]></description>
      <link>http://www.beingnet.com/showtopic-2071.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Wed, 05 Jan 2011 11:15:00 GMT</pubDate>
    </item>
    <item>
      <title>抽取方法，很有味道的重构</title>
    <description><![CDATA[class WhereSample3
{       
    static void Main()
    {
        // Data source
        int numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };

        // Create the query with a method call in the wh......]]></description>
      <link>http://www.beingnet.com/showtopic-2070.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Wed, 05 Jan 2011 11:02:00 GMT</pubDate>
    </item>
    <item>
      <title>放3个类，试试看怎么对这些个类做最好的重构</title>
    <description><![CDATA[首先说一下，这些个代码是从 Martin Flower 的重构那本书中 ‘转译’过来的。。《重构》这本书中的源码是用Java写的。

namespace RefactoringInCS
{
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Te]]></description>
      <link>http://www.beingnet.com/showtopic-2010.aspx</link>
      <author>shenyoujia</author>
      <pubDate>Sat, 18 Dec 2010 22:18:00 GMT</pubDate>
    </item>
  </channel>
</rss>
