<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="rss.xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>拼吾爱程序人生 - Visual Studio.NET</title>
    <link>http://www.pin5i.com/showforum-189.html</link>
    <description>Latest 20 threads</description>
    <copyright>Copyright (c) 拼吾爱程序人生</copyright>
    <generator>Discuz!NT</generator>
    <pubDate>Wed, 08 Oct 2008 04:21:58 GMT</pubDate>
    <ttl>180</ttl>
    <item>
      <title>Entity Framework之EntitySQL中的类型</title>
      <description><![CDATA[EDM（实体数据模型）中定义了许多的类型。我们可以把它大致分为三类：第一类是原始数据类型，例如EMD.Int32。第二类是在模式（Schema）中定义的类型，例如实体类型、关系类型等；第三类是临时出现的类型：像集合、行和引用，它们都是匿名类型。 

第一类第二类类型，大家已经接触颇多。我们来看一下什么是临时出现的类型。 

首先，为什么管它们叫归结为临时出现的类型？大家知道，EF采用对象模]]></description>
      <link>http://www.pin5i.com/showtopic-20308.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Sun, 05 Oct 2008 21:10:00 GMT</pubDate>
    </item>
    <item>
      <title>Presentation: Windows as a Web Platform</title>
      <description><![CDATA[Eric Nelson discusses how developers can use their favorite programming language to build web applications on Windows servers.  He gives an overview of the timeline of web development on Windows using......]]></description>
      <link>http://www.pin5i.com/showtopic-20293.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Sat, 04 Oct 2008 07:54:00 GMT</pubDate>
    </item>
    <item>
      <title>Windows Will Soon Enter Into the EC2 Cloud</title>
      <description><![CDATA[After years of offering its Cloud Computing Services to run Linux or Solaris, and after receiving support for running Java EE applications, Amazon is promising its Elastic Compute Cloud (EC2) will sup]]></description>
      <link>http://www.pin5i.com/showtopic-20292.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Sat, 04 Oct 2008 07:53:00 GMT</pubDate>
    </item>
    <item>
      <title>.NET开发最新参考资料推荐_20081002</title>
      <description><![CDATA[这是我的链接系列的最新篇。也请参阅我的ASP.NET 技巧，诀窍和教程网页和Silverlight教程网页里我以前写的众多很受欢迎的文章的链接。

ASP.NET

Amazon EC2 Support for Windows and ASP.NET: 本星期有重大新闻发布： Amazon将在他们的EC2服务中提供对Windows服务器2008的支持。这允许你在“云”中使用ASP.NET，]]></description>
      <link>http://www.pin5i.com/showtopic-20289.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Sat, 04 Oct 2008 07:41:00 GMT</pubDate>
    </item>
    <item>
      <title>Volta：利用重编译开发分布式应用</title>
      <description><![CDATA[微软LiveLabs实验室的Dragos Manolescu、Brian Beckman和Benjamin Livshits等三人最近发表了一篇关于Volta的文章，来探讨这个一年前在战略架构论坛2007上宣布的新技术。Volta可以用来对架构进行重构，就像20多年以来代码重构工具对代码进行重构一样。作者总结了Volta产生的背景，以及如何使用Volta等：
当前的编程语言和工具集全是为快速而简]]></description>
      <link>http://www.pin5i.com/showtopic-20285.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Fri, 03 Oct 2008 17:12:00 GMT</pubDate>
    </item>
    <item>
      <title>微软宣布下一代Visual Studio开发平台</title>
      <description><![CDATA[微软最近对外揭开了Visual Studio 2010和.NET Framework 4.0的面纱。 
据Visual Studio Team System产品管理部门的总监Norman Guadagno说，微软的下一代开发工具将被简单地命名为Visual Studio 2010，并将基于.NET Framework 4.0。VS 2010中值得关注的一个地方是应用生命周期管理（ALM），它能更]]></description>
      <link>http://www.pin5i.com/showtopic-20284.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Fri, 03 Oct 2008 17:11:00 GMT</pubDate>
    </item>
    <item>
      <title>.Net中的异步编程模式 (APM) (三)</title>
      <description><![CDATA[如何实现支持APM的设备操作

在前一篇中我们看到通过使用PowerThreading中的AsyncResult&amp;lt;T&amp;gt;类，我们可以很方便的将一个同步操作封装成异步的方式。同时使用这种方法和PInvoke，我们也可以为现有的C++设备库，如蓝牙设备提供一个.Net的异步类库。这样我们可以实现大部分对设备访问的.Net异步类库。 

但当我们有特殊要求时，如果调整LCD亮度时，就需]]></description>
      <link>http://www.pin5i.com/showtopic-20281.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Fri, 03 Oct 2008 15:41:00 GMT</pubDate>
    </item>
    <item>
      <title>.Net中的异步编程模式 (APM) (二)</title>
      <description><![CDATA[Note: 本篇主要内容来自Jeffery Richard的Implementing the CLR Asynchronous Programming Model，看过的同学可以略过。 

在前一篇中介绍了使用APM开发多线程程序的有点，同时关于如何使用APM方式的文章也很多了。所以，这篇主要想看看如何使用Jeffery Richard的Power Threading类库，来开发一个支持APM]]></description>
      <link>http://www.pin5i.com/showtopic-20280.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Fri, 03 Oct 2008 15:32:00 GMT</pubDate>
    </item>
    <item>
      <title>.Net中的异步编程模式 (APM) (一)</title>
      <description><![CDATA[总结一下.Net中的异步编程模式 (APM) 。计划分四个部分：
如何实现支持APM的类如果实现支持APM的硬件设备类Event-based的APMContinuation-passing Style(CPS)的APM
有些内容相关的文章已经很多了，我写的内容也主要来源于MSDN CONCURRENT AFFAIRS系列。我主要想结合这些内容，看如果使用PowerThreading类库来简化我]]></description>
      <link>http://www.pin5i.com/showtopic-20279.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Fri, 03 Oct 2008 15:23:00 GMT</pubDate>
    </item>
    <item>
      <title>CodePlex正式增加对TortoiseSVN的支持</title>
      <description><![CDATA[CodePlex最近宣布了对SVN 客户端的支持,例如使用TortoiseSVN连接到其代码库以同步源代码和资源。以前，SVN的用户每次想从CodePlex同步必须在客户端运行SvnBridge ，现在只需要在SVN的客户端上使用正确的URL就可以了。


CodePlex使用Team Foundation Server (TFS) 作为版本控制系统 (Version Control Sys]]></description>
      <link>http://www.pin5i.com/showtopic-20276.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Wed, 01 Oct 2008 23:51:00 GMT</pubDate>
    </item>
    <item>
      <title>10月在猪八戒威客网发任务送大礼</title>
      <description><![CDATA[10月在猪八戒威客网发任务送大礼
9月29日至10月30日 在猪八戒威客网发布任务送多重大礼，你发得越多我送得越多！赶快加入吧！
    活动专题：http://www.zhubajie.com/info/zt/1001/
      提到猪八戒网站，大家觉得这个名字很新奇，与互联网结合更是觉得搞笑！但他确实是一家能为您带来很多价值的网站，是国内威客网站中最大的网站。
      猪八戒网]]></description>
      <link>http://www.pin5i.com/showtopic-20270.html</link>
      <category>Visual Studio.NET</category>
      <author>qgy123</author>
      <pubDate>Wed, 01 Oct 2008 01:42:00 GMT</pubDate>
    </item>
    <item>
      <title>使用ClickOnce细分发布版本</title>
      <description><![CDATA[ClickOnce是微软在.NET 2.0框架中发布的一项技术，允许大家在Visual Studio中方便地部署和更新.NET的Windows应用程序。部署功能是通过把应用程序文件复制到一个文件夹中、FTP目录中或者某个Web位置上，并同时附加一个清单文件来实现的。清单文件是一个具有.application扩展名的XML文件，它包含了所有程序文件的一个列表，以及类似发布者标识这样的安全相关信息。C]]></description>
      <link>http://www.pin5i.com/showtopic-20253.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Sun, 28 Sep 2008 22:31:00 GMT</pubDate>
    </item>
    <item>
      <title>Framework之外的IoC</title>
      <description><![CDATA[IoC (Inversion of Control)是什么？软件设计大师已经作出了很多定义。这里，我从组件开发的角度来谈什么是IoC-“IoC是一种设计模式，当系统由多个组件(Component)构成时，它能消除组件间的直接依赖关系，让组件的开发更独立，使用更灵活”。

IoC是Framework的基本特征，但IoC并不专属于Framework设计范畴，它在需要消除组件依赖的地方都能发挥作用。]]></description>
      <link>http://www.pin5i.com/showtopic-20251.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Sun, 28 Sep 2008 22:06:00 GMT</pubDate>
    </item>
    <item>
      <title>Visual Studio 2010 预览</title>
      <description><![CDATA[先来个VS2010的界面:
8497

新的语法:
8496


ASP.NET 4.0的新东西:

Web forms
clientIDs,
Can be managed
CSS
Support none-table-based html rendering
Non-inlien style attributes
Accessibilit......]]></description>
      <link>http://www.pin5i.com/showtopic-20244.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Sat, 27 Sep 2008 08:09:00 GMT</pubDate>
    </item>
    <item>
      <title>安装中文VS2008 SP1 和.NETFRAMEWORK 3.5SP1后智能提示是英文的解决办法</title>
      <description><![CDATA[期待已久的VS2008 SP1 和.NET FRAMEWORK 3.5 SP1都出来了 

下载地址：

Microsoft Visual Studio 2008 Service Pack 1 (iso)

http://www.microsoft.com/downloa ... 7-bd99-84e525b5ce61

Visual Studio 2008 Team Founda]]></description>
      <link>http://www.pin5i.com/showtopic-19821.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Wed, 13 Aug 2008 23:15:00 GMT</pubDate>
    </item>
    <item>
      <title>开源opensc工程windows平台下编译</title>
      <description><![CDATA[在Google上搜了一下opensc的简介，没有，算了还是自己说吧。
opensc官方网站http://www.opensc-project.org/
工程简介：对于智能卡的访问，opensc工程提供了一套库和工具。opensc重点放在了卡片的密码操作，推进卡片的应用如邮件加密、认证和签名。opensc实现了PKCS#11的API以便支持Mozilla FireFox（浏览器）和Thunder]]></description>
      <link>http://www.pin5i.com/showtopic-20226.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Tue, 23 Sep 2008 12:43:00 GMT</pubDate>
    </item>
    <item>
      <title>微软加入OMG：选择DSL还是UML？</title>
      <description><![CDATA[过去微软在模型架构方面下了很大的功夫，比如BizTalk、软件工厂以及VSX工具等，而近日它又宣布加入OMG，并且已经准备发布其下一代建模架构的社区技术预览版（CTP）：Oslo。
对于Oslo项目，服务器和工具部门的SVP（软件高级副总裁）Bob Muglia解释了微软的这一做法：
将模型深植于系统内部，令系统本身的操作亦是模型驱动的。对象管理组织（OMG，Object Management]]></description>
      <link>http://www.pin5i.com/showtopic-20217.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Mon, 22 Sep 2008 23:21:00 GMT</pubDate>
    </item>
    <item>
      <title>Windows Mobile 6.0 SDK及开发体验（三：编辑注册表 ）</title>
      <description><![CDATA[前面的两篇文章非常的简单，只不过是要让大家觉得，其实WM的编程开发也不是那么的困难，虽然.NET CF还是有很多缺点，例如API还没有很好的封装，但是已经比较容易上手了，相比之下，虽然MSDN中没有太多的关于WM编程的资料，而且最新的WM 6.0/6.1的资料几乎为0，但是WM开发还是比较轻松的，特别是对于在.NET平台下开发的老手而言，只需要阅读不同的文档，就可以很容易的上手。

其实，本系]]></description>
      <link>http://www.pin5i.com/showtopic-20214.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Mon, 22 Sep 2008 22:47:00 GMT</pubDate>
    </item>
    <item>
      <title>Windows Mobile 6.0 SDK及开发体验（二：使用 SqlCe ）</title>
      <description><![CDATA[在创建了Windows Mobile应用程序后，就需要对数据进行显式和操作，在Windows Mobile中，操作数据库还是比较简单的，和ADO.NET中其他对象相同，也需要使用Connetion，DataAdapter等对象进行数据连接和绑定已经操作，基本上做任何开发的的基本思路就是先确定需求，然后在确定结构，然后编写UI和代码，在编写代码中，无非就是逻辑编程和数据库操作，这里简单的讲解一下数据]]></description>
      <link>http://www.pin5i.com/showtopic-20213.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Mon, 22 Sep 2008 22:36:00 GMT</pubDate>
    </item>
    <item>
      <title>Windows Mobile 6.0 SDK及开发体验（一：小试牛刀）</title>
      <description><![CDATA[今天下载了Windows Mobile 6.0 SDK，体验一下Windows Mobile 6.0的开发，虽然没有专门针对Windows Mobile 6.1的SDK开发包，但是Windows Mobile 6.0的已经足够了，喜欢Windows Mobile或者想研究Windows Mobile开发的朋友可以体验一下了，SDK下载地址如下。

Windows Mobile 6 Profes]]></description>
      <link>http://www.pin5i.com/showtopic-20212.html</link>
      <category>Visual Studio.NET</category>
      <author>cobra</author>
      <pubDate>Mon, 22 Sep 2008 22:27:00 GMT</pubDate>
    </item>
  </channel>
</rss>