摘要: CodeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System;using System.Linq.Expressions;using System.Linq;using System.Data.Linq;namespace Kin... 阅读全文
posted @ 2008-11-08 23:11 牟向阳 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 显式实现还用于解决两个接口分别声明具有相同名称的不同成员(如属性和方法)的情况: interface ILeft { int P { get;} } interface IRight { int P(); } 为了同时实现两个接口,类必须对属性 P 和/或方法 P 使用显式实现以避免编译器错误。例如: class ... 阅读全文
posted @ 2008-11-08 21:50 牟向阳 阅读(137) 评论(0) 推荐(0) 编辑