閱讀英文

共用方式為


編譯器錯誤 CS0582

Conditional 不能用在介面成員上

ConditionalAttribute 不能用在介面成員上。

下列範例會產生 CS0582:

// CS0582.cs  
// compile with: /target:library  
using System.Diagnostics;  
interface MyIFace  
{  
   [ConditionalAttribute("DEBUG")]   // CS0582  
   void zz();  
}