zl程序教程

您现在的位置是:首页 >  工具

当前栏目

缺少编译器要求的成员“System.Runtime.CompilerServices.ExtensionAttribute..ctor” 解决方案

编译器解决方案 system 要求 成员 runtime .. 缺少
2023-09-27 14:24:41 时间

我自己使用的解决方法

错误产生环境及非完美解决办法

错误提示:缺少编译器要求的成员“System.Runtime.CompilerServices.ExtensionAttribute..ctor”

这个错误真的非常诡异,因为双击这个错误的时候无法定位到出错的地方。

而且这个错误实在是非常不明确。

其实,产生这个错误的人大部分是因为引用了 Newtonsoft.Json.Net20.dll 这个类库。

网上简单的解决方式是:“删除 Newtonsoft.Json.Net20.dll 后重新引用

还有其他朋友说用下面的方法,可惜我还没用上

静态类中添加如下。

 

//缺少编译器要求的成员“ystem.Runtime.CompilerServices.ExtensionAttribute..ctor”

namespace System.Runtime.CompilerServices
{
    public class ExtensionAttribute : Attribute { }
}