9 lines
174 B
C#
9 lines
174 B
C#
// CS0582: Conditional not valid on interface members
|
|
// Line: 5
|
|
|
|
interface Interface {
|
|
[System.Diagnostics.ConditionalAttribute("DEBUG")]
|
|
void Method ();
|
|
}
|
|
|