0
我只是在我的項目中有一個簡單的接口定義,我還沒有使用它。但是當我嘗試構建項目時,出現此錯誤:VB.Net IEquatable,拒絕訪問
訪問被拒絕:'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
什麼想法?