Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The Conditional not valid on interface members
ConditionalAttribute is not valid on an interface member.
The following sample generates CS0582:
// CS0582.cs
// compile with: /target:library
using System.Diagnostics;
interface MyIFace
{
[ConditionalAttribute("DEBUG")] // CS0582
void zz();
}