2009-10-13 47 views
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 

什麼想法?

回答

0

不知道發生了什麼,但改變了一堆東西,然後把它改回錯誤的方式自己。一定是Visual Studio的呃逆。