<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_撞破南墙_分类_CLR中求性能和原理</title><id>http://feed.cnblogs.com/blog/u/57131/category/274154/rss</id><updated>2012-06-01T19:29:05Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/category/274154.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/57131/category/274154/rss"/><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/28/advance_in_csharp_about_pro6.html</id><title type="text">c#进阶理解property属性和属性值之惑</title><summary type="text">1 简单demo 2 使用reflactor分析3 使用属性的提醒 4 我对属性的理解5 属性需要定位吗？ 6 扩展阅读</summary><published>2010-12-27T20:51:00Z</published><updated>2010-12-27T20:51:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/28/advance_in_csharp_about_pro6.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/28/advance_in_csharp_about_pro6.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/28/advance_in_csharp_about_params.html</id><title type="text">c#进阶params可变个数的参数</title><summary type="text">1 简单使用2 可变个数的参数params 的原理3 性能分析4 较佳实践建议</summary><published>2010-12-27T18:55:00Z</published><updated>2010-12-27T18:55:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/28/advance_in_csharp_about_params.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/28/advance_in_csharp_about_params.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/27/1918340.html</id><title type="text">c#进阶-方法中的ref和out</title><summary type="text">在一个方法中 你必须知道每个参数是引用类型还是值类型否则你将发现你无法控制程序。这些细节并不是每个.NET程序员都需要知道，但是却是进阶必备的,差距也在于此。</summary><published>2010-12-27T14:30:00Z</published><updated>2010-12-27T14:30:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/27/1918340.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/27/1918340.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/26/1917064.html</id><title type="text">c#进阶-methods中3explicit和implicit</title><summary type="text">介绍explicit和implicit</summary><published>2010-12-26T02:14:00Z</published><updated>2010-12-26T02:14:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/26/1917064.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/26/1917064.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/26/1917062.html</id><title type="text">C#进阶可选参数和命名参数</title><summary type="text">1简单实现： [代码] 2但是如果指定参数的一个实现非常容易造成版本兼容的问题 可选参数，属于一种有争议的东西。 使用可选择参的确很方便，但是，一旦跨编译器，或跨语言的时候，甚至，在继随时就有麻烦了。 默认参数的默认值应该是多少，这需要从原来的程序中获得。而一旦原来的程序版本升级时改了默认值，那就完蛋了。 在继承时，如果继承的函数默认值被改了，也是一个很令人头晕的事。 来自这里 但是我们可以...</summary><published>2010-12-25T20:31:00Z</published><updated>2010-12-25T20:31:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/26/1917062.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/26/1917062.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/25/1916679.html</id><title type="text">C#进阶 Methods下 Extension Methods</title><summary type="text">1 c#的扩展方法从一个简单的例子开始 [代码] 值得注意的是 在Program 的.CS文件里 并没有 引用 扩展方法的命名空间， 因为他的命名空间就是SYSTEM...这个又好又坏，对于多人来说，按理说命名空间不要取默认的。. 一些说明： 1 C#只支持扩展方法，不支持扩展属性，扩展事件。。。等 2 方法名无限制，第一个参数必须带this 2为集合做扩展方法 [代码] 3更多细节 ...</summary><published>2010-12-25T05:46:00Z</published><updated>2010-12-25T05:46:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/25/1916679.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/25/1916679.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/25/1916446.html</id><title type="text">c#进阶 methods中2overload methods</title><summary type="text">CLR并不知道发生了操作符重载这回事，因为在编译的过程中 各种操作符都被生产了对应的代码。比如说+被生产为一个加法函数 [代码] 自己动手为 类A重载一个操作符 [代码][代码] 能够允许重载的操作符非常有限，只是一般的+ - 等等。 CLR中更多的重载的可以参看 ECMA specifications(www.ecma-international.org/publications/standar...</summary><published>2010-12-25T04:05:00Z</published><updated>2010-12-25T04:05:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/25/1916446.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/25/1916446.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/23/clr_via_csharp_methods2.html</id><title type="text">c#进阶methods中</title><summary type="text">值类型实例的函数 值类型不需要构造函数也不会被默认添加，但是你可以为他定义带参构造函数。 结构体被使用后中变量被初始化为0/NULL.值类型可以直接赋值，当然也可以 使用构造函数赋值，但其构造函数不能为无参构造函数否则会报错 "error CS0568: Structs cannot contain explicit parameterless constructors." c#编译器这...</summary><published>2010-12-23T07:54:00Z</published><updated>2010-12-23T07:54:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/23/clr_via_csharp_methods2.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/23/clr_via_csharp_methods2.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/23/clr_via_csharp_methods_1.html</id><title type="text">c#进阶-methods上</title><summary type="text">构造函数的那些事 如果你不为类定义一个构造函数，他将在编译时候自动产生 public class SomeType { } public class SomeType { public SomeType() : base() { } } 两段代码的编译结果一样。 如果父类是一个抽象类，那么对父类构造函数的访问权限是 protected。 否则是public。如果父类没有提供一个无参构造函数...</summary><published>2010-12-23T04:47:00Z</published><updated>2010-12-23T04:47:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/23/clr_via_csharp_methods_1.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/23/clr_via_csharp_methods_1.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/22/1913325.html</id><title type="text">C#中的常量的使用</title><summary type="text">常量在编译器确定，并且不会改变，所以常量的类型必须是基础数据类型(primitive types)Boolean, Char, Byte, SByte, Int16, UInt16, Int32, UInt32, Int64,UInt64, Single, Double, Decimal, and String。当然也有特殊情况，即给定义非基础数据的常量的时候赋值null。 常量被当做静态变量。常...</summary><published>2010-12-22T05:09:00Z</published><updated>2010-12-22T05:09:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/22/1913325.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/22/1913325.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/facingwaller/archive/2010/12/09/csharp_advance_2_how_to_use_type.html</id><title type="text">C#功能派的进阶2--类型的那些事</title><summary type="text">类型的这些事和那些事.</summary><published>2010-12-09T03:08:00Z</published><updated>2010-12-09T03:08:00Z</updated><author><name>撞破南墙</name><uri>http://www.cnblogs.com/facingwaller/</uri></author><link rel="alternate" href="http://www.cnblogs.com/facingwaller/archive/2010/12/09/csharp_advance_2_how_to_use_type.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/facingwaller/archive/2010/12/09/csharp_advance_2_how_to_use_type.html"/><content type="html"/></entry></feed>
