<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_龙猫_分类_编程心得</title><id>http://feed.cnblogs.com/blog/u/40335/category/213156/rss</id><updated>2012-05-31T04:35:07Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/deafcat/category/213156.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/40335/category/213156/rss"/><entry><id>http://www.cnblogs.com/deafcat/archive/2011/12/15/Cache-and-Backing-Store-in-CAB.html</id><title type="text">简谈 Enterprise Library  CAB 的 Backing Store</title><summary type="text">Enterprise Library 提供了 CAB(Caching Application Block) 来帮助开发人员进行数据缓存管理.其内存缓存的实现倒也简单实用——取一个Hashtable来保存各个缓存项——跟我们自己做的一样,不过其中有个Backing Store的概念,倒是让这个缓存库一下丰富了起来.看CAB入门文章时,常常会看到介绍它有4种存储方式:内存存储独立文件缓存（Isolated Storage）数据库存储（DataBase Cache Storage）自定义存储看到这种排版的介绍方式,很容易就将读者导入这样的思维:独立文件存储、数据库存储和自定义存储是跟内存存储同种性质</summary><published>2011-12-15T12:33:00Z</published><updated>2011-12-15T12:33:00Z</updated><author><name>_龙猫</name><uri>http://www.cnblogs.com/deafcat/</uri></author><link rel="alternate" href="http://www.cnblogs.com/deafcat/archive/2011/12/15/Cache-and-Backing-Store-in-CAB.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/deafcat/archive/2011/12/15/Cache-and-Backing-Store-in-CAB.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/deafcat/archive/2011/10/20/Basic-Set-Operation-Of-Generic-List.html</id><title type="text">List&amp;lt;T&amp;gt;的交并差集操作操作</title><summary type="text">这个操作应该是比较基础的了，平时用得也比较少，所以写在这里提醒自己Framework已经提供了这样的功能了：static void Main(string[] args){ var left = new List&lt;SampleData&gt; { SampleData.OwnedByLeft, SampleData.OwnedByBoth }; var right = new List&lt;SampleData&gt; { SampleData.OwnedByRight, SampleData.OwnedByBoth }; var intersection = left.Interse</summary><published>2011-10-20T03:54:00Z</published><updated>2011-10-20T03:54:00Z</updated><author><name>_龙猫</name><uri>http://www.cnblogs.com/deafcat/</uri></author><link rel="alternate" href="http://www.cnblogs.com/deafcat/archive/2011/10/20/Basic-Set-Operation-Of-Generic-List.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/deafcat/archive/2011/10/20/Basic-Set-Operation-Of-Generic-List.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/deafcat/archive/2011/08/11/easily-ignored-usage-of-assignment-operator.html</id><title type="text">C# 中 = 运算符易忽视的另一用途</title><summary type="text">在定义类属性的时候常常会像这样写：class XX{ private OO _oo; public OO Oo { get { if (Oo ==null) Oo =new OO(); return _oo; } }} 近日看到Oo get内的另一种写法：get{ return _oo ?? _oo =new OO { Name ="halo" };}呵，??的用法我懂，可是右边为什么能将赋值后的_oo返回我就不懂了。一开始以为是??的特殊用法，于是...</summary><published>2011-08-11T09:47:00Z</published><updated>2011-08-11T09:47:00Z</updated><author><name>_龙猫</name><uri>http://www.cnblogs.com/deafcat/</uri></author><link rel="alternate" href="http://www.cnblogs.com/deafcat/archive/2011/08/11/easily-ignored-usage-of-assignment-operator.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/deafcat/archive/2011/08/11/easily-ignored-usage-of-assignment-operator.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/deafcat/archive/2010/01/21/1653576.html</id><title type="text">准PM的糟糕经验</title><summary type="text">一个不小心，发现上一篇文章居然已经是几个月前写的了。虽然几乎天天来这里逛，但是写文章的念头倒是想都不去想。当然大部分原因是因为没有足够的时间，没有自己的电脑就是这么痛苦啊~进入新公司半年以来，一共做了2个项目A和B。项目A是在试用期就忙里忙外地赶的，同时有另外2个人跟我一样是试用的，3个人一起做项目。根据领导的指示：要在一个月内赶出项目来，UI外包，原因是为了追赶什么搜索引擎的seo（也就是说合同...</summary><published>2010-01-21T11:30:00Z</published><updated>2010-01-21T11:30:00Z</updated><author><name>_龙猫</name><uri>http://www.cnblogs.com/deafcat/</uri></author><link rel="alternate" href="http://www.cnblogs.com/deafcat/archive/2010/01/21/1653576.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/deafcat/archive/2010/01/21/1653576.html"/><content type="text">一个不小心，发现上一篇文章居然已经是几个月前写的了。虽然几乎天天来这里逛，但是写文章的念头倒是想都不去想。当然大部分原因是因为没有足够的时间，没有自己的电脑就是这么痛苦啊~进入新公司半年以来，一共做了2个项目A和B。项目A是在试用期就忙里忙外地赶的，同时有另外2个人跟我一样是试用的，3个人一起做项目。根据领导的指示：要在一个月内赶出项目来，UI外包，原因是为了追赶什么搜索引擎的seo（也就是说合同...</content></entry></feed>
