<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_我爱妞妞</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/285/rss</id><updated>2005-08-26T02:38:30Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/285/rss"/><entry><id>http://www.cnblogs.com/iouniuniu/archive/2004/08/19/34770.html</id><title type="text">大家都用得是什么操作系统呀？</title><summary type="text">不知道大家做.net开发的，使用的最多的是什么样的操作系统。我的是WIN2000 + SP4.</summary><published>2004-08-19T04:33:00Z</published><updated>2004-08-19T04:33:00Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/iouniuniu/archive/2004/08/19/34770.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/archive/2004/08/19/34770.html"/></entry><entry><id>http://www.cnblogs.com/iouniuniu/archive/2004/05/12/9099.html</id><title type="text">我的个人Blog</title><summary type="text">这是我个人的blog网站http://flykite.yeah.net,希望大家常去转转.基本上都已经好了,就是论坛还没有彻底的解决乱码问题!速度可能比较慢,用的是国外的空间.</summary><published>2004-05-12T03:20:00Z</published><updated>2004-05-12T03:20:00Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/iouniuniu/archive/2004/05/12/9099.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/archive/2004/05/12/9099.html"/></entry><entry><id>http://www.cnblogs.com/iouniuniu/archive/2004/04/30/8156.html</id><title type="text">google的一些显为人知的用法</title><summary type="text">各种入口:http://www.google.com/microsoft　　微软风格的入口http://www.google.com/mac MAC风格的入口 http://www.google.com/linux 　　Linux风格的入口 http://www.google.com/bsd　　FreeBSD风格的入口 http://www.google.com/jobs google工作机会Go...</summary><published>2004-04-30T07:33:00Z</published><updated>2004-04-30T07:33:00Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/iouniuniu/archive/2004/04/30/8156.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/archive/2004/04/30/8156.html"/></entry><entry><id>http://www.cnblogs.com/iouniuniu/archive/2004/04/08/5534.html</id><title type="text">类和类型</title><summary type="text">1: 类型的概念概念：类型刻划了一组值及其上可施行的操作，可理解为值集和操作集构成的二元组。类型的概念与值的概念相对立，前者是程序中的概念，后者则是程序运行时的概念，两者通过标识值的语言成分（例如，变量、表达式等）联系起来。比如变量v说明为具有类型T，类型T所刻划的值集为{v1，v2，&amp;#8230;vn，&amp;#8230;}，则变量v运行时能取且只能取某个vi为值。由此可见，类型规定了具有该类型的变量...</summary><published>2004-04-08T11:16:00Z</published><updated>2004-04-08T11:16:00Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/iouniuniu/archive/2004/04/08/5534.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/archive/2004/04/08/5534.html"/></entry><entry><id>http://www.cnblogs.com/iouniuniu/archive/2004/04/05/5238.html</id><title type="text">SQL中的交叉表</title><summary type="text">有时候需要将结果旋转以便在水平方向显示列，水平方向显示行，即所谓的交叉表（PrvotTable）。在SQL显示它也比较的简单：1：结果确定的交叉表： Year Quarter Amount（表Prvot） ---- ------- ------ 1990 1 1.1 1990 2 1.2显示成：Year Q1Q2Q3 Q4 1990 3 1.3------------ ------ 1990 4 ...</summary><published>2004-04-05T10:59:00Z</published><updated>2004-04-05T10:59:00Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/iouniuniu/archive/2004/04/05/5238.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/archive/2004/04/05/5238.html"/></entry><entry><id>http://www.cnblogs.com/iouniuniu/archive/2004/03/28/4427.html</id><title type="text">传值还是传参(二)</title><summary type="text">首先非常感谢Justin Shen ,hBifTs ahnan ,你们的评论使我对此有了更深的了解,但为了完整性,我再罗嗦罗嗦传值还是传参!在c#里,给我们提供了两种类型的pass by reference方式:out与ref.1：首先看一下以out关键字标识的传参方式: A：在被调用方法中任何对参数的改变，都会影响到调用方法中传递给此参数的变量的改变。 B：声明out parament，能够是被...</summary><published>2004-03-28T04:10:00Z</published><updated>2004-03-28T04:10:00Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/iouniuniu/archive/2004/03/28/4427.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/archive/2004/03/28/4427.html"/></entry><entry><id>http://www.cnblogs.com/iouniuniu/archive/2004/03/26/4290.html</id><title type="text">传值还是传参(一)</title><summary type="text">我对参数传递的方式的理解:对于值类型来说,参数以传值来传递,这种方式没有人会感到疑惑.对于引用类型来说,就比较困难.自己写了一段小代码来帮助自己理解,如下: using System; public class ConsoleTest {  public static void Main()  { Test first = new Test();  first.Print(); Change(fi...</summary><published>2004-03-26T10:19:00Z</published><updated>2004-03-26T10:19:00Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/iouniuniu/archive/2004/03/26/4290.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/archive/2004/03/26/4290.html"/></entry><entry><id>http://www.cnblogs.com/iouniuniu/archive/2004/03/24/4085.html</id><title type="text">对象的类型</title><summary type="text">有两个接口：分别为ISomeA、ISomeBpublic interface ISomeA{object Find(object o);object List();} public interface ISomeB{object Find(object o);object List();bool IsMatch(object o);}然后有两个类分别实现接口继承： public class Som...</summary><published>2004-03-24T11:29:00Z</published><updated>2004-03-24T11:29:00Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/iouniuniu/archive/2004/03/24/4085.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/archive/2004/03/24/4085.html"/></entry><entry><id>http://www.cnblogs.com/iouniuniu/archive/2004/03/19/3572.html</id><title type="text">c# 编码规范</title><summary type="text">公司最近要加强规范化管理，需要制定c#编码规范,不知大家有没有什么好的建议，以及比较通用的规范！请大家多提建议！</summary><published>2004-03-19T01:35:00Z</published><updated>2004-03-19T01:35:00Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/iouniuniu/archive/2004/03/19/3572.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/archive/2004/03/19/3572.html"/></entry><entry><id>http://www.cnblogs.com/iouniuniu/archive/2004/02/23/1536.html</id><title type="text">谈谈自己的未来</title><summary type="text">今天来新公司上班，感觉还凑合，但不是想象中的那么好！心里有点郁闷！这年头，不知道什么样的工作才是好工作，不知道自己到底想做什么，对未来充满了恐惧。心里比较喜欢王小波，尽管自己也不能够看懂王小波的文字，但我喜欢那种荒诞不经的念头，喜欢那种可以自由想象的氛围，喜欢那种身份的自由转换！</summary><published>2004-02-23T10:08:00Z</published><updated>2004-02-23T10:08:00Z</updated><author><name>我爱妞妞</name><uri>http://www.cnblogs.com/iouniuniu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/iouniuniu/archive/2004/02/23/1536.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/iouniuniu/archive/2004/02/23/1536.html"/></entry></feed>
