.Net 2.0中使用扩展方法

复制代码
大家都知道扩展方法是不能直接在2.0中使用的
需要引用一个‍System.Core的dll
不过现在有更加简单的方法了
只要在工程项目中加入以下代码就OK啦
namespace System.Runtime.CompilerServices
{
    [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly)]
    public sealed class ExtensionAttribute : Attribute { }
}
简直太赞了
复制代码
posted @   跟着阿笨一起玩.NET  阅读(279)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示