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

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

 静态类中添加如下。此方法本人测试有效。

//缺少编译器要求的成员“ystem.Runtime.CompilerServices.ExtensionAttribute..ctor”
namespace System.Runtime.CompilerServices
{
    public class ExtensionAttribute : Attribute { }
}

网上找的其他方法

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

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

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

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

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

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

 

时间: 2024-12-01 16:50:35

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

System.Runtime.InteropServices.COMException (0x8004E00F): COM+ 无法与 Microsoft 分布式事务协调程序交谈 (异常来自 HRESU

错误信息: System.Runtime.InteropServices.COMException (0x8004E00F): COM+ 无法与 Microsoft 分布式事务协调程序交谈 (异常来自 HRESULT:0x8004E00F) 解决方案: 1.删除注册表中的键:     HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/MSDTC HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/MSDTC HKEY

System.Runtime.InteropServices.COMException (0x80040154)错误

用windwos服务.owc.excle组件生成Excel文档,然后通过邮件自动发生给公司管理层,本来在本地测试.配置都正常,但是部署到Window 2003服务器上,服务启动后,日志文件记录程序出错,错误如下所示System.Runtime.InteropServices.COMException(0x80040154): 检索 COM 类工厂中 CLSID 为 {00024500-0000-0000-C000-000000000046} 的组件时失败,原因是出现以下错误: 80040154.

sl得到WCF的服务的实体对象提示System.Runtime.Serialization.IExtensibleDataObject没有

问题描述 我在SL中调用WCF服务!其中有一个实体对象如下[DataContract][KnownTypeAttribute(typeof(DataStatisicsForYahooInfo))]publicclassA{[DataMember]publicstringE{get;set;}[DataMember]publicDateTimeD{get;set;}[DataMember]publicDateTimeF{get;set;}}客户端文件中publicpartialclassA:obj

关于System.Runtime.InteropServices

问题描述 [System.Runtime.InteropServices.DllImportAttribute("kernel32.dll")]privatestaticexternboolWritePrivateProfileString(stringlpAppName,stringlpKeyName,stringlpString,stringlpFileName);这段代码总是提示错误错误:应输入}行:1错误:应输入类型.命名空间定义或文件尾行:1 解决方案 解决方案二:你这一句只

System.Runtime.InteropServices.COMException (0x80004005): 对 COM 组件的调用返回了错误 HRESU

问题描述 在ESRI.ArcGIS.Display.ServerStyleGalleryClass.AddFile(Stringpath)在SWRLApp.MainFrm.CallRepresent2(IFeatureLayerfeatureLayer,IWorkspaceworkSpace)在SWRLApp.MainFrm.btOpen_Click(Objectsender,EventArgse)在DevComponents.DotNetBar.BaseItem.RaiseClick(eEve

System.Runtime.InteropServices.COMException (0x8000FFFF): 灾难性故障 (异常来自 HRESULT:0x

问题描述 System.Runtime.InteropServices.COMException(0x8000FFFF):灾难性故障(异常来自HRESULT:0x8000FFFF(E_UNEXPECTED))在MS.Win32.UnsafeNativeMethods.ITfKeystrokeMgr.TestKeyDown(Int32wParam,Int32lParam,Boolean&eaten)在System.Windows.Input.TextServicesContext.Keystrok

关于c#生成word的问题 System.Runtime.InteropServices.COMException

问题描述 单个或者批量执行中的第一条没有问题,只要cShape用过一次就报错误.System.Runtime.InteropServices.COMException"类型的未经处理的异常在ModelPrint.exe中发生其他信息:对COM组件的调用返回了错误HRESULTE_FAIL.privatevoidquerendan_Click(boolprintModel,stringprintName,stringhetongId,stringhetongName,stringhetongCon

safebitvector32-有大师帮我分析下这个类的作用吗?System.Runtime.Caching.SafeBitVector32

问题描述 有大师帮我分析下这个类的作用吗?System.Runtime.Caching.SafeBitVector32 有大师帮忙分析下这个类吗?我看出是一个索引,但是具体功能和作用还是没有完全吃透,有人能帮帮忙吗? internal struct SafeBitVector32 { private volatile int _data; internal bool this[int bit] { get { int data = this._data; return (data & bit)

josn的序列化例子,未能加载文件或程序集“System.Runtime.Serialization,或它的某一个依赖项。系统找不到指定的文件

问题描述 做了个json序列化的例子,却运行在DataContractJsonSerializerser=newDataContractJsonSerializer(typeof(T))时;报错未能加载文件或程序集"System.Runtime.Serialization,Version=2.0.5.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e"或它的某一个依赖项.系统找不到指定的文件怎么解决这个问题呀? 解决方案 解决方案二:少了