2008年8月29日

关于IComparable接口

摘要: 实现IComparable接口,需要实现CompareTo方法,该方法在MSDN中定义如下: Compares the current instance with another object of the same type. (比较当前实例和另一个相同类型的对象) Namespace: System Assembly: mscorlib (in mscorlib.dll) ... 阅读全文

posted @ 2008-08-29 15:44 Shin 阅读(289) 评论(0) 推荐(0) 编辑

【转帖】C#索引器

摘要: 索引器概述 索引器使得对象可按照与数组相似的方法进行索引。 get 访问器返回值。set 访问器分配值。 this 关键字用于定义索引器。 value 关键字用于定义由 set 索引器分配的值。 索引器不必根据整数值进行索引,由您决定如何定义特定的查找机制。 索引器可被重载。 索引器可以有多个形参,例如当访问二维数组时。 C#语言一个最令人感兴趣的地方就是类的索引器(indexer)。简单说来,所... 阅读全文

posted @ 2008-08-29 15:23 Shin 阅读(258) 评论(0) 推荐(0) 编辑

导航