Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0582.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb5efb518a2437249bbe78a631c613beea7536fe (plain)
1
2
3
4
5
6
7
8
// cs0582.cs: Conditional not valid on interface members
// Line: 5

interface Interface {
        [System.Diagnostics.ConditionalAttribute("DEBUG")]
        void Method ();
}