大家都知道扩展方法是不能直接在2.0中使用的 需要引用一个System.Core的dll 不过现在有更加简单的方法了 只要在工程项目中加入以下代码就OK啦 namespace System.Runtime.CompilerServices { [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly)] public sealed class ExtensionAttribute : Attribute { } } 简直太赞了