我的项目中只有一个简单的接口定义,我什至还没有使用过。但是当我尝试构建项目时,我得到了这个错误:
访问被拒绝:'System.IEquatable`1[Reactor.IOptions]'。
下面是界面:
Interface IOptions
Inherits Xml.Serialization.IXmlSerializable ' Optoins Should Serialize to XML
Inherits System.Runtime.Serialization.ISerializable ' Options should implement .net Serialization
Inherits System.ICloneable ' Must be able to copy options
Inherits System.IEquatable(Of IOptions) ' Must be able to compare opitons
End Interface
有任何想法吗?